aboutsummaryrefslogtreecommitdiffhomepage
path: root/node_modules/setprototypeof
diff options
context:
space:
mode:
authorYaroslav De La Peña Smirnov <yaros.rus_89@live.com.mx>2017-11-29 11:44:34 +0300
committerYaroslav De La Peña Smirnov <yaros.rus_89@live.com.mx>2017-11-29 11:44:34 +0300
commit67fdec20726e48ba3a934cb25bb30d47ec4a4f29 (patch)
tree37fd9f4f0b0c20103e1646fc83021e4765de3680 /node_modules/setprototypeof
downloadspanish-checkers-67fdec20726e48ba3a934cb25bb30d47ec4a4f29.tar.gz
spanish-checkers-67fdec20726e48ba3a934cb25bb30d47ec4a4f29.zip
Initial commit, version 0.5.3
Diffstat (limited to 'node_modules/setprototypeof')
-rw-r--r--node_modules/setprototypeof/LICENSE13
-rw-r--r--node_modules/setprototypeof/README.md26
-rw-r--r--node_modules/setprototypeof/index.d.ts2
-rw-r--r--node_modules/setprototypeof/index.js15
-rw-r--r--node_modules/setprototypeof/package.json90
5 files changed, 146 insertions, 0 deletions
diff --git a/node_modules/setprototypeof/LICENSE b/node_modules/setprototypeof/LICENSE
new file mode 100644
index 0000000..61afa2f
--- /dev/null
+++ b/node_modules/setprototypeof/LICENSE
@@ -0,0 +1,13 @@
+Copyright (c) 2015, Wes Todd
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
+OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/node_modules/setprototypeof/README.md b/node_modules/setprototypeof/README.md
new file mode 100644
index 0000000..826bf02
--- /dev/null
+++ b/node_modules/setprototypeof/README.md
@@ -0,0 +1,26 @@
+# Polyfill for `Object.setPrototypeOf`
+
+A simple cross platform implementation to set the prototype of an instianted object. Supports all modern browsers and at least back to IE8.
+
+## Usage:
+
+```
+$ npm install --save setprototypeof
+```
+
+```javascript
+var setPrototypeOf = require('setprototypeof');
+
+var obj = {};
+setPrototypeOf(obj, {
+ foo: function() {
+ return 'bar';
+ }
+});
+obj.foo(); // bar
+```
+
+TypeScript is also supported:
+```typescript
+import setPrototypeOf = require('setprototypeof');
+``` \ No newline at end of file
diff --git a/node_modules/setprototypeof/index.d.ts b/node_modules/setprototypeof/index.d.ts
new file mode 100644
index 0000000..f108ecd
--- /dev/null
+++ b/node_modules/setprototypeof/index.d.ts
@@ -0,0 +1,2 @@
+declare function setPrototypeOf(o: any, proto: object | null): any;
+export = setPrototypeOf;
diff --git a/node_modules/setprototypeof/index.js b/node_modules/setprototypeof/index.js
new file mode 100644
index 0000000..93ea417
--- /dev/null
+++ b/node_modules/setprototypeof/index.js
@@ -0,0 +1,15 @@
+module.exports = Object.setPrototypeOf || ({__proto__:[]} instanceof Array ? setProtoOf : mixinProperties);
+
+function setProtoOf(obj, proto) {
+ obj.__proto__ = proto;
+ return obj;
+}
+
+function mixinProperties(obj, proto) {
+ for (var prop in proto) {
+ if (!obj.hasOwnProperty(prop)) {
+ obj[prop] = proto[prop];
+ }
+ }
+ return obj;
+}
diff --git a/node_modules/setprototypeof/package.json b/node_modules/setprototypeof/package.json
new file mode 100644
index 0000000..201df1b
--- /dev/null
+++ b/node_modules/setprototypeof/package.json
@@ -0,0 +1,90 @@
+{
+ "_args": [
+ [
+ {
+ "raw": "setprototypeof@1.1.0",
+ "scope": null,
+ "escapedName": "setprototypeof",
+ "name": "setprototypeof",
+ "rawSpec": "1.1.0",
+ "spec": "1.1.0",
+ "type": "version"
+ },
+ "/mnt/e/Yaroslav/Documents/Webs/nodejs/checkers/node_modules/express"
+ ]
+ ],
+ "_from": "setprototypeof@1.1.0",
+ "_id": "setprototypeof@1.1.0",
+ "_inCache": true,
+ "_location": "/setprototypeof",
+ "_nodeVersion": "8.4.0",
+ "_npmOperationalInternal": {
+ "host": "s3://npm-registry-packages",
+ "tmp": "tmp/setprototypeof-1.1.0.tgz_1505346623089_0.6391460271552205"
+ },
+ "_npmUser": {
+ "name": "wesleytodd",
+ "email": "wes@wesleytodd.com"
+ },
+ "_npmVersion": "5.3.0",
+ "_phantomChildren": {},
+ "_requested": {
+ "raw": "setprototypeof@1.1.0",
+ "scope": null,
+ "escapedName": "setprototypeof",
+ "name": "setprototypeof",
+ "rawSpec": "1.1.0",
+ "spec": "1.1.0",
+ "type": "version"
+ },
+ "_requiredBy": [
+ "/express"
+ ],
+ "_resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
+ "_shasum": "d0bd85536887b6fe7c0d818cb962d9d91c54e656",
+ "_shrinkwrap": null,
+ "_spec": "setprototypeof@1.1.0",
+ "_where": "/mnt/e/Yaroslav/Documents/Webs/nodejs/checkers/node_modules/express",
+ "author": {
+ "name": "Wes Todd"
+ },
+ "bugs": {
+ "url": "https://github.com/wesleytodd/setprototypeof/issues"
+ },
+ "dependencies": {},
+ "description": "A small polyfill for Object.setprototypeof",
+ "devDependencies": {},
+ "directories": {},
+ "dist": {
+ "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
+ "shasum": "d0bd85536887b6fe7c0d818cb962d9d91c54e656",
+ "tarball": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz"
+ },
+ "gitHead": "8fc2c260d8b7da91133edefde49a3df461f220c8",
+ "homepage": "https://github.com/wesleytodd/setprototypeof",
+ "keywords": [
+ "polyfill",
+ "object",
+ "setprototypeof"
+ ],
+ "license": "ISC",
+ "main": "index.js",
+ "maintainers": [
+ {
+ "name": "wesleytodd",
+ "email": "wes@wesleytodd.com"
+ }
+ ],
+ "name": "setprototypeof",
+ "optionalDependencies": {},
+ "readme": "ERROR: No README data found!",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/wesleytodd/setprototypeof.git"
+ },
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "typings": "index.d.ts",
+ "version": "1.1.0"
+}