🐛 Update: Added support for the 'find' command in settings.local.json. Enhanced logging for various modules, including initialization and performance metrics. Improved SQLite database optimization and ensured better tracking of user interactions and system processes. 📚
This commit is contained in:
21
network-visualization/node_modules/pascalcase/LICENSE
generated
vendored
Normal file
21
network-visualization/node_modules/pascalcase/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015, Jon Schlinkert.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
80
network-visualization/node_modules/pascalcase/README.md
generated
vendored
Normal file
80
network-visualization/node_modules/pascalcase/README.md
generated
vendored
Normal file
@ -0,0 +1,80 @@
|
||||
# pascalcase [](http://badge.fury.io/js/pascalcase)
|
||||
|
||||
> Convert a string to pascal-case.
|
||||
|
||||
## Install
|
||||
|
||||
Install with [npm](https://www.npmjs.com/)
|
||||
|
||||
```sh
|
||||
$ npm i pascalcase --save
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var pascalcase = require('pascalcase');
|
||||
|
||||
pascalcase('a');
|
||||
//=> 'A'
|
||||
|
||||
pascalcase('foo bar baz');
|
||||
//=> 'FooBarBaz'
|
||||
|
||||
pascalcase('foo_bar-baz');
|
||||
//=> 'FooBarBaz'
|
||||
|
||||
pascalcase('foo.bar.baz');
|
||||
//=> 'FooBarBaz'
|
||||
|
||||
pascalcase('foo/bar/baz');
|
||||
//=> 'FooBarBaz'
|
||||
|
||||
pascalcase('foo[bar)baz');
|
||||
//=> 'FooBarBaz'
|
||||
|
||||
pascalcase('#foo+bar*baz');
|
||||
//=> 'FooBarBaz'
|
||||
|
||||
pascalcase('$foo~bar`baz');
|
||||
//=> 'FooBarBaz'
|
||||
|
||||
pascalcase('_foo_bar-baz-');
|
||||
//=> 'FooBarBaz'
|
||||
```
|
||||
|
||||
## Related projects
|
||||
|
||||
* [justified](https://github.com/jonschlinkert/justified): Wrap words to a specified length and justified the text.
|
||||
* [pad-left](https://github.com/jonschlinkert/pad-left): Left pad a string with zeros or a specified string. Fastest implementation.
|
||||
* [pad-right](https://github.com/jonschlinkert/pad-right): Right pad a string with zeros or a specified string. Fastest implementation.
|
||||
* [repeat-string](https://github.com/jonschlinkert/repeat-string): Repeat the given string n times. Fastest implementation for repeating a string.
|
||||
* [word-wrap](https://github.com/jonschlinkert/word-wrap): Wrap words to a specified length.
|
||||
|
||||
## Running tests
|
||||
|
||||
Install dev dependencies:
|
||||
|
||||
```sh
|
||||
$ npm i -d && npm test
|
||||
```
|
||||
|
||||
## Contributing
|
||||
|
||||
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/pascalcase/issues/new)
|
||||
|
||||
## Author
|
||||
|
||||
**Jon Schlinkert**
|
||||
|
||||
+ [github/jonschlinkert](https://github.com/jonschlinkert)
|
||||
+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
|
||||
|
||||
## License
|
||||
|
||||
Copyright © 2015 Jon Schlinkert
|
||||
Released under the MIT license.
|
||||
|
||||
***
|
||||
|
||||
_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on August 19, 2015._
|
21
network-visualization/node_modules/pascalcase/index.js
generated
vendored
Normal file
21
network-visualization/node_modules/pascalcase/index.js
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
/*!
|
||||
* pascalcase <https://github.com/jonschlinkert/pascalcase>
|
||||
*
|
||||
* Copyright (c) 2015, Jon Schlinkert.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
|
||||
function pascalcase(str) {
|
||||
if (typeof str !== 'string') {
|
||||
throw new TypeError('expected a string.');
|
||||
}
|
||||
str = str.replace(/([A-Z])/g, ' $1');
|
||||
if (str.length === 1) { return str.toUpperCase(); }
|
||||
str = str.replace(/^[\W_]+|[\W_]+$/g, '').toLowerCase();
|
||||
str = str.charAt(0).toUpperCase() + str.slice(1);
|
||||
return str.replace(/[\W_]+(\w|$)/g, function (_, ch) {
|
||||
return ch.toUpperCase();
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = pascalcase;
|
46
network-visualization/node_modules/pascalcase/package.json
generated
vendored
Normal file
46
network-visualization/node_modules/pascalcase/package.json
generated
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
{
|
||||
"name": "pascalcase",
|
||||
"description": "Convert a string to pascal-case.",
|
||||
"version": "0.1.1",
|
||||
"homepage": "https://github.com/jonschlinkert/pascalcase",
|
||||
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
||||
"repository": "jonschlinkert/pascalcase",
|
||||
"bugs": {
|
||||
"url": "https://github.com/jonschlinkert/pascalcase/issues"
|
||||
},
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"main": "index.js",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"devDependencies": {
|
||||
"mocha": "*",
|
||||
"should": "*"
|
||||
},
|
||||
"keywords": [
|
||||
"camelcase",
|
||||
"case",
|
||||
"casing",
|
||||
"pascal",
|
||||
"pascal-case",
|
||||
"pascalcase",
|
||||
"string"
|
||||
],
|
||||
"verb": {
|
||||
"related": {
|
||||
"list": [
|
||||
"pad-left",
|
||||
"pad-right",
|
||||
"word-wrap",
|
||||
"repeat-string",
|
||||
"justified"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user