NUEVA BUSQUEDA DE DATOS SRI
This commit is contained in:
2
node_modules/setprototypeof/README.md
generated
vendored
2
node_modules/setprototypeof/README.md
generated
vendored
@@ -27,5 +27,5 @@ obj.foo() // bar
|
||||
TypeScript is also supported:
|
||||
|
||||
```typescript
|
||||
import setPrototypeOf = require('setprototypeof')
|
||||
import setPrototypeOf from 'setprototypeof'
|
||||
```
|
||||
|
||||
2
node_modules/setprototypeof/index.js
generated
vendored
2
node_modules/setprototypeof/index.js
generated
vendored
@@ -9,7 +9,7 @@ function setProtoOf (obj, proto) {
|
||||
|
||||
function mixinProperties (obj, proto) {
|
||||
for (var prop in proto) {
|
||||
if (!obj.hasOwnProperty(prop)) {
|
||||
if (!Object.prototype.hasOwnProperty.call(obj, prop)) {
|
||||
obj[prop] = proto[prop]
|
||||
}
|
||||
}
|
||||
|
||||
80
node_modules/setprototypeof/package.json
generated
vendored
80
node_modules/setprototypeof/package.json
generated
vendored
@@ -1,64 +1,38 @@
|
||||
{
|
||||
"_from": "setprototypeof@1.1.1",
|
||||
"_id": "setprototypeof@1.1.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==",
|
||||
"_location": "/setprototypeof",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "setprototypeof@1.1.1",
|
||||
"name": "setprototypeof",
|
||||
"escapedName": "setprototypeof",
|
||||
"rawSpec": "1.1.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/express",
|
||||
"/http-errors"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
|
||||
"_shasum": "7e95acb24aa92f5885e0abef5ba131330d4ae683",
|
||||
"_spec": "setprototypeof@1.1.1",
|
||||
"_where": "/home/pablinux/Projects/Node/app_sigma/node_modules/express",
|
||||
"author": {
|
||||
"name": "Wes Todd"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/wesleytodd/setprototypeof/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"name": "setprototypeof",
|
||||
"version": "1.2.0",
|
||||
"description": "A small polyfill for Object.setprototypeof",
|
||||
"devDependencies": {
|
||||
"mocha": "^5.2.0",
|
||||
"standard": "^12.0.1"
|
||||
"main": "index.js",
|
||||
"typings": "index.d.ts",
|
||||
"scripts": {
|
||||
"test": "standard && mocha",
|
||||
"testallversions": "npm run node010 && npm run node4 && npm run node6 && npm run node9 && npm run node11",
|
||||
"testversion": "docker run -it --rm -v $(PWD):/usr/src/app -w /usr/src/app node:${NODE_VER} npm install mocha@${MOCHA_VER:-latest} && npm t",
|
||||
"node010": "NODE_VER=0.10 MOCHA_VER=3 npm run testversion",
|
||||
"node4": "NODE_VER=4 npm run testversion",
|
||||
"node6": "NODE_VER=6 npm run testversion",
|
||||
"node9": "NODE_VER=9 npm run testversion",
|
||||
"node11": "NODE_VER=11 npm run testversion",
|
||||
"prepublishOnly": "npm t",
|
||||
"postpublish": "git push origin && git push origin --tags"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/wesleytodd/setprototypeof.git"
|
||||
},
|
||||
"homepage": "https://github.com/wesleytodd/setprototypeof",
|
||||
"keywords": [
|
||||
"polyfill",
|
||||
"object",
|
||||
"setprototypeof"
|
||||
],
|
||||
"author": "Wes Todd",
|
||||
"license": "ISC",
|
||||
"main": "index.js",
|
||||
"name": "setprototypeof",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/wesleytodd/setprototypeof.git"
|
||||
"bugs": {
|
||||
"url": "https://github.com/wesleytodd/setprototypeof/issues"
|
||||
},
|
||||
"scripts": {
|
||||
"node010": "NODE_VER=0.10 MOCHA_VER=3 npm run testversion",
|
||||
"node11": "NODE_VER=11 npm run testversion",
|
||||
"node4": "NODE_VER=4 npm run testversion",
|
||||
"node6": "NODE_VER=6 npm run testversion",
|
||||
"node9": "NODE_VER=9 npm run testversion",
|
||||
"test": "standard && mocha",
|
||||
"testallversions": "npm run node010 && npm run node4 && npm run node6 && npm run node9 && npm run node11",
|
||||
"testversion": "docker run -it --rm -v $(PWD):/usr/src/app -w /usr/src/app node:${NODE_VER} npm install mocha@${MOCHA_VER:-latest} && npm t"
|
||||
},
|
||||
"typings": "index.d.ts",
|
||||
"version": "1.1.1"
|
||||
"homepage": "https://github.com/wesleytodd/setprototypeof",
|
||||
"devDependencies": {
|
||||
"mocha": "^6.1.4",
|
||||
"standard": "^13.0.2"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user