yeet
This commit is contained in:
15
node_modules/noop-fn/.editorconfig
generated
vendored
Normal file
15
node_modules/noop-fn/.editorconfig
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
# This file is for unifying the coding style for different editors and IDEs
|
||||
# editorconfig.org
|
||||
|
||||
root = true
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[{package.json}]
|
||||
indent_size = 2
|
2
node_modules/noop-fn/.npmignore
generated
vendored
Normal file
2
node_modules/noop-fn/.npmignore
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
.idea
|
||||
node_modules
|
22
node_modules/noop-fn/LICENSE
generated
vendored
Normal file
22
node_modules/noop-fn/LICENSE
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Ivan Nikulin (ifaaan@gmail.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.
|
||||
|
20
node_modules/noop-fn/README.md
generated
vendored
Normal file
20
node_modules/noop-fn/README.md
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
# noop-fn
|
||||
|
||||
It's noop function. It does nothing.
|
||||
|
||||
## Install
|
||||
```
|
||||
npm install noop-fn
|
||||
```
|
||||
|
||||
## Usage
|
||||
```js
|
||||
var noop = require('noop-fn');
|
||||
|
||||
noop(); // Nothing happened
|
||||
```
|
||||
|
||||
|
||||
## Author
|
||||
[Ivan Nikulin](https://github.com/inikulin) (ifaaan@gmail.com)
|
||||
|
1
node_modules/noop-fn/index.js
generated
vendored
Normal file
1
node_modules/noop-fn/index.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
module.exports = function() {};
|
21
node_modules/noop-fn/package.json
generated
vendored
Normal file
21
node_modules/noop-fn/package.json
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "noop-fn",
|
||||
"version": "1.0.0",
|
||||
"description": "It's noop function. It does nothing.",
|
||||
"main": "index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/inikulin/noop-fn.git"
|
||||
},
|
||||
"keywords": [
|
||||
"noop",
|
||||
"function",
|
||||
"nothing"
|
||||
],
|
||||
"author": "Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/inikulin/noop-fn/issues"
|
||||
},
|
||||
"homepage": "https://github.com/inikulin/noop-fn#readme"
|
||||
}
|
Reference in New Issue
Block a user