mirror of
https://github.com/cachix/install-nix-action.git
synced 2025-06-08 18:04:29 +00:00
v7
This commit is contained in:
parent
033d472283
commit
49df04613e
6774 changed files with 1602535 additions and 1 deletions
21
node_modules/to-object-path/LICENSE
generated
vendored
Normal file
21
node_modules/to-object-path/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015-2016, 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.
|
71
node_modules/to-object-path/README.md
generated
vendored
Normal file
71
node_modules/to-object-path/README.md
generated
vendored
Normal file
|
@ -0,0 +1,71 @@
|
|||
# to-object-path [](http://badge.fury.io/js/to-object-path)
|
||||
|
||||
> Create an object path from a list or array of strings.
|
||||
|
||||
## Install
|
||||
|
||||
Install with [npm](https://www.npmjs.com/)
|
||||
|
||||
```sh
|
||||
$ npm i to-object-path --save
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var toPath = require('to-object-path');
|
||||
|
||||
toPath('foo', 'bar', 'baz');
|
||||
toPath('foo', ['bar', 'baz']);
|
||||
//=> 'foo.bar.baz'
|
||||
```
|
||||
|
||||
Also supports passing an arguments object (without having to slice args):
|
||||
|
||||
```js
|
||||
function foo()
|
||||
return toPath(arguments);
|
||||
}
|
||||
|
||||
foo('foo', 'bar', 'baz');
|
||||
foo('foo', ['bar', 'baz']);
|
||||
//=> 'foo.bar.baz'
|
||||
```
|
||||
|
||||
Visit the [example](./example.js) to see how this could be used in an application.
|
||||
|
||||
## Related projects
|
||||
|
||||
* [get-value](https://www.npmjs.com/package/get-value): Use property paths (` a.b.c`) to get a nested value from an object. | [homepage](https://github.com/jonschlinkert/get-value)
|
||||
* [has-value](https://www.npmjs.com/package/has-value): Returns true if a value exists, false if empty. Works with deeply nested values using… [more](https://www.npmjs.com/package/has-value) | [homepage](https://github.com/jonschlinkert/has-value)
|
||||
* [omit-value](https://www.npmjs.com/package/omit-value): Omit properties from an object or deeply nested property of an object using object path… [more](https://www.npmjs.com/package/omit-value) | [homepage](https://github.com/jonschlinkert/omit-value)
|
||||
* [set-value](https://www.npmjs.com/package/set-value): Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths. | [homepage](https://github.com/jonschlinkert/set-value)
|
||||
* [unset-value](https://www.npmjs.com/package/unset-value): Delete nested properties from an object using dot notation. | [homepage](https://github.com/jonschlinkert/unset-value)
|
||||
|
||||
## 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/to-object-path/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 October 28, 2015._
|
33
node_modules/to-object-path/index.js
generated
vendored
Normal file
33
node_modules/to-object-path/index.js
generated
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
/*!
|
||||
* to-object-path <https://github.com/jonschlinkert/to-object-path>
|
||||
*
|
||||
* Copyright (c) 2015, Jon Schlinkert.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var typeOf = require('kind-of');
|
||||
|
||||
module.exports = function toPath(args) {
|
||||
if (typeOf(args) !== 'arguments') {
|
||||
args = arguments;
|
||||
}
|
||||
return filter(args).join('.');
|
||||
};
|
||||
|
||||
function filter(arr) {
|
||||
var len = arr.length;
|
||||
var idx = -1;
|
||||
var res = [];
|
||||
|
||||
while (++idx < len) {
|
||||
var ele = arr[idx];
|
||||
if (typeOf(ele) === 'arguments' || Array.isArray(ele)) {
|
||||
res.push.apply(res, filter(ele));
|
||||
} else if (typeof ele === 'string') {
|
||||
res.push(ele);
|
||||
}
|
||||
}
|
||||
return res;
|
||||
}
|
48
node_modules/to-object-path/package.json
generated
vendored
Normal file
48
node_modules/to-object-path/package.json
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"name": "to-object-path",
|
||||
"description": "Create an object path from a list or array of strings.",
|
||||
"version": "0.3.0",
|
||||
"homepage": "https://github.com/jonschlinkert/to-object-path",
|
||||
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
||||
"repository": "jonschlinkert/to-object-path",
|
||||
"bugs": {
|
||||
"url": "https://github.com/jonschlinkert/to-object-path/issues"
|
||||
},
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"main": "index.js",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"dependencies": {
|
||||
"kind-of": "^3.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"base": "^0.6.7",
|
||||
"mocha": "*"
|
||||
},
|
||||
"keywords": [
|
||||
"dot",
|
||||
"nested",
|
||||
"notation",
|
||||
"object",
|
||||
"path",
|
||||
"stringify"
|
||||
],
|
||||
"verb": {
|
||||
"related": {
|
||||
"list": [
|
||||
"get-value",
|
||||
"set-value",
|
||||
"has-value",
|
||||
"omit-value",
|
||||
"unset-value"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue