WIP - add extractor, generate snippet_data
This commit is contained in:
19
node_modules/sort-keys-length/LICENSE.md
generated
vendored
Normal file
19
node_modules/sort-keys-length/LICENSE.md
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
Copyright (c) Kevin Mårtensson
|
||||
|
||||
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.
|
||||
35
node_modules/sort-keys-length/README.md
generated
vendored
Normal file
35
node_modules/sort-keys-length/README.md
generated
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
# sort-keys-length [](http://travis-ci.org/kevva/sort-keys-length)
|
||||
|
||||
> Sort object keys by length
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
$ npm install --save sort-keys-length
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var sortKeysLength = require('sort-keys-length');
|
||||
|
||||
sortKeysLength.asc({ ab: 'x', a: 'y', abc: 'z' });
|
||||
//=> { a: 'y', ab: 'x', abc: 'z' }
|
||||
|
||||
sortKeysLength.desc({ ab: 'x', a: 'y', abc: 'z' });
|
||||
//=> { abc: 'z', ab: 'x', a: 'y' }
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### .asc
|
||||
|
||||
Ascending sort.
|
||||
|
||||
### .desc
|
||||
|
||||
Descending sort.
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Kevin Mårtensson](https://github.com/kevva)
|
||||
22
node_modules/sort-keys-length/index.js
generated
vendored
Normal file
22
node_modules/sort-keys-length/index.js
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
var sortKeys = require('sort-keys');
|
||||
|
||||
/**
|
||||
* Sort object keys by length
|
||||
*
|
||||
* @param obj
|
||||
* @api public
|
||||
*/
|
||||
|
||||
module.exports.desc = function (obj) {
|
||||
return sortKeys(obj, function (a, b) {
|
||||
return b.length - a.length;
|
||||
});
|
||||
}
|
||||
|
||||
module.exports.asc = function (obj) {
|
||||
return sortKeys(obj, function (a, b) {
|
||||
return a.length - b.length;
|
||||
});
|
||||
}
|
||||
44
node_modules/sort-keys-length/node_modules/sort-keys/index.js
generated
vendored
Normal file
44
node_modules/sort-keys-length/node_modules/sort-keys/index.js
generated
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
'use strict';
|
||||
var isPlainObj = require('is-plain-obj');
|
||||
|
||||
module.exports = function (obj, opts) {
|
||||
if (!isPlainObj(obj)) {
|
||||
throw new TypeError('Expected a plain object');
|
||||
}
|
||||
|
||||
opts = opts || {};
|
||||
|
||||
// DEPRECATED
|
||||
if (typeof opts === 'function') {
|
||||
opts = {compare: opts};
|
||||
}
|
||||
|
||||
var deep = opts.deep;
|
||||
var seenInput = [];
|
||||
var seenOutput = [];
|
||||
|
||||
var sortKeys = function (x) {
|
||||
var seenIndex = seenInput.indexOf(x);
|
||||
|
||||
if (seenIndex !== -1) {
|
||||
return seenOutput[seenIndex];
|
||||
}
|
||||
|
||||
var ret = {};
|
||||
var keys = Object.keys(x).sort(opts.compare);
|
||||
|
||||
seenInput.push(x);
|
||||
seenOutput.push(ret);
|
||||
|
||||
for (var i = 0; i < keys.length; i++) {
|
||||
var key = keys[i];
|
||||
var val = x[key];
|
||||
|
||||
ret[key] = deep && isPlainObj(val) ? sortKeys(val) : val;
|
||||
}
|
||||
|
||||
return ret;
|
||||
};
|
||||
|
||||
return sortKeys(obj);
|
||||
};
|
||||
21
node_modules/sort-keys-length/node_modules/sort-keys/license
generated
vendored
Normal file
21
node_modules/sort-keys-length/node_modules/sort-keys/license
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
||||
|
||||
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.
|
||||
72
node_modules/sort-keys-length/node_modules/sort-keys/package.json
generated
vendored
Normal file
72
node_modules/sort-keys-length/node_modules/sort-keys/package.json
generated
vendored
Normal file
@ -0,0 +1,72 @@
|
||||
{
|
||||
"_from": "sort-keys@^1.0.0",
|
||||
"_id": "sort-keys@1.1.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=",
|
||||
"_location": "/sort-keys-length/sort-keys",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "sort-keys@^1.0.0",
|
||||
"name": "sort-keys",
|
||||
"escapedName": "sort-keys",
|
||||
"rawSpec": "^1.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/sort-keys-length"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz",
|
||||
"_shasum": "441b6d4d346798f1b4e49e8920adfba0e543f9ad",
|
||||
"_spec": "sort-keys@^1.0.0",
|
||||
"_where": "/Users/stefanfejes/Projects/30-seconds-of-python-code/node_modules/sort-keys-length",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/sort-keys/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"is-plain-obj": "^1.0.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Sort the keys of an object",
|
||||
"devDependencies": {
|
||||
"mocha": "*",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/sort-keys#readme",
|
||||
"keywords": [
|
||||
"sort",
|
||||
"object",
|
||||
"keys",
|
||||
"obj",
|
||||
"key",
|
||||
"stable",
|
||||
"deterministic",
|
||||
"deep",
|
||||
"recursive",
|
||||
"recursively"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "sort-keys",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/sort-keys.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && mocha"
|
||||
},
|
||||
"version": "1.1.2"
|
||||
}
|
||||
60
node_modules/sort-keys-length/node_modules/sort-keys/readme.md
generated
vendored
Normal file
60
node_modules/sort-keys-length/node_modules/sort-keys/readme.md
generated
vendored
Normal file
@ -0,0 +1,60 @@
|
||||
# sort-keys [](https://travis-ci.org/sindresorhus/sort-keys)
|
||||
|
||||
> Sort the keys of an object
|
||||
|
||||
Useful to get a deterministically ordered object, as the order of keys can vary between engines.
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save sort-keys
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const sortKeys = require('sort-keys');
|
||||
|
||||
sortKeys({c: 0, a: 0, b: 0});
|
||||
//=> {a: 0, b: 0, c: 0}
|
||||
|
||||
sortKeys({b: {b: 0, a: 0}, a: 0}, {deep: true});
|
||||
//=> {a: 0, b: {a: 0, b: 0}}
|
||||
|
||||
sortKeys({c: 0, a: 0, b: 0}, {
|
||||
compare: (a, b) => -a.localeCompare(b)
|
||||
});
|
||||
//=> {c: 0, b: 0, a: 0}
|
||||
```
|
||||
|
||||
|
||||
## API
|
||||
|
||||
### sortKeys(input, [options])
|
||||
|
||||
Returns a new object with sorted keys.
|
||||
|
||||
#### input
|
||||
|
||||
Type: `Object`
|
||||
|
||||
#### options
|
||||
|
||||
##### deep
|
||||
|
||||
Type: `boolean`
|
||||
|
||||
Recursively sort keys.
|
||||
|
||||
##### compare
|
||||
|
||||
Type: `Function`
|
||||
|
||||
[Compare function.](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort)
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](https://sindresorhus.com)
|
||||
66
node_modules/sort-keys-length/package.json
generated
vendored
Normal file
66
node_modules/sort-keys-length/package.json
generated
vendored
Normal file
@ -0,0 +1,66 @@
|
||||
{
|
||||
"_from": "sort-keys-length@^1.0.0",
|
||||
"_id": "sort-keys-length@1.0.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=",
|
||||
"_location": "/sort-keys-length",
|
||||
"_phantomChildren": {
|
||||
"is-plain-obj": "1.1.0"
|
||||
},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "sort-keys-length@^1.0.0",
|
||||
"name": "sort-keys-length",
|
||||
"escapedName": "sort-keys-length",
|
||||
"rawSpec": "^1.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/ext-name"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz",
|
||||
"_shasum": "9cb6f4f4e9e48155a6aa0671edd336ff1479a188",
|
||||
"_spec": "sort-keys-length@^1.0.0",
|
||||
"_where": "/Users/stefanfejes/Projects/30-seconds-of-python-code/node_modules/ext-name",
|
||||
"author": {
|
||||
"name": "Kevin Mårtensson",
|
||||
"email": "kevinmartensson@gmail.com",
|
||||
"url": "https://github.com/kevva"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/kevva/sort-keys-length/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"sort-keys": "^1.0.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Sort objecy keys by length",
|
||||
"devDependencies": {
|
||||
"ava": "^0.0.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/kevva/sort-keys-length#readme",
|
||||
"keywords": [
|
||||
"length",
|
||||
"object",
|
||||
"sort"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "sort-keys-length",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/kevva/sort-keys-length.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"version": "1.0.1"
|
||||
}
|
||||
Reference in New Issue
Block a user