applying transfer to react app

This commit is contained in:
Tyler Koenig
2021-09-20 16:54:47 -04:00
parent 8819f31dd0
commit c612b7d702
37373 changed files with 3775588 additions and 2871 deletions
+12
View File
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [3.0.2](https://github.com/mightyiam/get-own-enumerable-property-symbols/compare/v3.0.1...v3.0.2) (2019-12-10)
### Bug Fixes
* add missing license file ([dbf11c2](https://github.com/mightyiam/get-own-enumerable-property-symbols/commit/dbf11c2b705dcfb42d6ac291f6608adb14ed6fd3)), closes [#87](https://github.com/mightyiam/get-own-enumerable-property-symbols/issues/87)
### [3.0.1](https://github.com/mightyiam/get-own-enumerable-property-symbols/compare/v3.0.0...v3.0.1) (2019-10-04)
+13
View File
@@ -0,0 +1,13 @@
Copyright (c) 2019, Shahar Or
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.
+15
View File
@@ -0,0 +1,15 @@
# get-own-enumerable-property-symbols [![Build Status](https://travis-ci.org/mightyiam/get-own-enumerable-property-symbols.svg?branch=master)](https://travis-ci.org/mightyiam/get-own-enumerable-property-symbols)
Returns an array of all *enumerable* symbol properties found directly upon a given object.
Similar to [`Object.getOwnPropertySymbols`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertySymbols)
but only [enumerable](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Enumerability_and_ownership_of_properties) keys.
```js
import getOwnEnumPropSymbols from 'get-own-enumerable-property-symbols'
getOwnEnumPropSymbols({ [Symbol()]: undefined })
// [Symbol()]
getOwnEnumPropSymbols(Object.defineProperty({}, Symbol(), {enumerable: false}))
// []
```
+2
View File
@@ -0,0 +1,2 @@
declare const _default: (object: object) => symbol[];
export default _default;
+6
View File
@@ -0,0 +1,6 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = (object) => Object
.getOwnPropertySymbols(object)
.filter((keySymbol) => Object.prototype.propertyIsEnumerable.call(object, keySymbol));
//# sourceMappingURL=index.js.map
+1
View File
@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAAA,kBAAe,CAAC,MAAc,EAAY,EAAE,CAAC,MAAM;KAChD,qBAAqB,CAAC,MAAM,CAAC;KAC7B,MAAM,CAAC,CAAC,SAAS,EAAW,EAAE,CAAC,MAAM,CAAC,SAAS,CAAC,oBAAoB,CAAC,IAAI,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,CAAA"}
+98
View File
@@ -0,0 +1,98 @@
{
"_from": "get-own-enumerable-property-symbols@^3.0.0",
"_id": "get-own-enumerable-property-symbols@3.0.2",
"_inBundle": false,
"_integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==",
"_location": "/get-own-enumerable-property-symbols",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "get-own-enumerable-property-symbols@^3.0.0",
"name": "get-own-enumerable-property-symbols",
"escapedName": "get-own-enumerable-property-symbols",
"rawSpec": "^3.0.0",
"saveSpec": null,
"fetchSpec": "^3.0.0"
},
"_requiredBy": [
"/stringify-object"
],
"_resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz",
"_shasum": "b5fde77f22cbe35f390b4e089922c50bce6ef664",
"_spec": "get-own-enumerable-property-symbols@^3.0.0",
"_where": "/Users/tylerkoenig/Code/personal/react-scss2/node_modules/stringify-object",
"author": {
"name": "Shahar Or",
"email": "mightyiampresence@gmail.com",
"url": "mightyiam"
},
"bugs": {
"url": "https://github.com/mightyiam/get-own-enumerable-property-symbols/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Returns an array of all enumerable symbol properties found directly upon a given object",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/travis-cli": "^8.2.0",
"@types/node": "^12.12.11",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"eslint": "^6.6.0",
"eslint-config-standard-with-typescript": "^11.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.1.0",
"npm-run-all": "^4.1.5",
"standard-version": "^7.0.1",
"tsconfigs": "^4.0.1",
"typescript": "^3.7.2"
},
"eslintIgnore": [
"*.d.ts"
],
"files": [
"lib/index.d.ts",
"lib/index.js",
"lib/index.js.map"
],
"homepage": "https://github.com/mightyiam/get-own-enumerable-property-symbols#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm test"
}
},
"keywords": [
"get",
"enumerable",
"symbol",
"property",
"key",
"object"
],
"license": "ISC",
"main": "lib/index.js",
"name": "get-own-enumerable-property-symbols",
"repository": {
"type": "git",
"url": "git+https://github.com/mightyiam/get-own-enumerable-property-symbols.git"
},
"scripts": {
"lint": "eslint --ext .ts .",
"release": "standard-version",
"test": "run-s lint transpile unit",
"transpile": "tsc",
"unit": "node lib/test.js"
},
"standard": {
"ignore": [
"lib"
]
},
"types": "lib/index.d.ts",
"version": "3.0.2"
}