Update bot
Took 2 hours 17 minutes
This commit is contained in:
17
node_modules/is-property/.npmignore
generated
vendored
Normal file
17
node_modules/is-property/.npmignore
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
lib-cov
|
||||
*.seed
|
||||
*.log
|
||||
*.csv
|
||||
*.dat
|
||||
*.out
|
||||
*.pid
|
||||
*.gz
|
||||
|
||||
pids
|
||||
logs
|
||||
results
|
||||
|
||||
npm-debug.log
|
||||
node_modules/*
|
||||
*.DS_Store
|
||||
test/*
|
22
node_modules/is-property/LICENSE
generated
vendored
Normal file
22
node_modules/is-property/LICENSE
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2013 Mikola Lysenko
|
||||
|
||||
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.
|
28
node_modules/is-property/README.md
generated
vendored
Normal file
28
node_modules/is-property/README.md
generated
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
is-property
|
||||
===========
|
||||
Tests if a property of a JavaScript object can be accessed using the dot (.) notation or if it must be enclosed in brackets, (ie use x[" ... "])
|
||||
|
||||
Example
|
||||
-------
|
||||
|
||||
```javascript
|
||||
var isProperty = require("is-property")
|
||||
|
||||
console.log(isProperty("foo")) //Prints true
|
||||
console.log(isProperty("0")) //Prints false
|
||||
```
|
||||
|
||||
Install
|
||||
-------
|
||||
|
||||
npm install is-property
|
||||
|
||||
### `require("is-property")(str)`
|
||||
Checks if str is a property
|
||||
|
||||
* `str` is a string which we will test if it is a property or not
|
||||
|
||||
**Returns** true or false depending if str is a property
|
||||
|
||||
## Credits
|
||||
(c) 2013 Mikola Lysenko. MIT License
|
5
node_modules/is-property/is-property.js
generated
vendored
Normal file
5
node_modules/is-property/is-property.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
63
node_modules/is-property/package.json
generated
vendored
Normal file
63
node_modules/is-property/package.json
generated
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
{
|
||||
"_from": "is-property@^1.0.2",
|
||||
"_id": "is-property@1.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=",
|
||||
"_location": "/is-property",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "is-property@^1.0.2",
|
||||
"name": "is-property",
|
||||
"escapedName": "is-property",
|
||||
"rawSpec": "^1.0.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.0.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/generate-function"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz",
|
||||
"_shasum": "57fe1c4e48474edd65b09911f26b1cd4095dda84",
|
||||
"_spec": "is-property@^1.0.2",
|
||||
"_where": "/home/tobias/IdeaProjects/Woam-Antispam-Bot/node_modules/generate-function",
|
||||
"author": {
|
||||
"name": "Mikola Lysenko"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/mikolalysenko/is-property/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {},
|
||||
"deprecated": false,
|
||||
"description": "Tests if a JSON property can be accessed using . syntax",
|
||||
"devDependencies": {
|
||||
"tape": "~1.0.4"
|
||||
},
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
"gitHead": "0a85ea5b6b1264ea1cdecc6e5cf186adbb3ffc50",
|
||||
"homepage": "https://github.com/mikolalysenko/is-property#readme",
|
||||
"keywords": [
|
||||
"is",
|
||||
"property",
|
||||
"json",
|
||||
"dot",
|
||||
"bracket",
|
||||
".",
|
||||
"[]"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "is-property.js",
|
||||
"name": "is-property",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/mikolalysenko/is-property.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "tap test/*.js"
|
||||
},
|
||||
"version": "1.0.2"
|
||||
}
|
Reference in New Issue
Block a user