Socket
Socket
Sign inDemoInstall

get-own-enumerable-property-symbols

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.1 to 3.0.0

6

lib/index.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = function (object) { return Object
exports.default = (object) => Object
.getOwnPropertySymbols(object)
.filter(function (keySymbol) { return object.propertyIsEnumerable(keySymbol); }); };
//# sourceMappingURL=index.js.map
.filter((keySymbol) => object.propertyIsEnumerable(keySymbol));
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSxrQkFBZSxDQUFDLE1BQWMsRUFBWSxFQUFFLENBQUMsTUFBTTtLQUNoRCxxQkFBcUIsQ0FBQyxNQUFNLENBQUM7S0FDN0IsTUFBTSxDQUFDLENBQUMsU0FBUyxFQUFXLEVBQUUsQ0FBQyxNQUFNLENBQUMsb0JBQW9CLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBkZWZhdWx0IChvYmplY3Q6IG9iamVjdCk6IHN5bWJvbFtdID0+IE9iamVjdFxuICAuZ2V0T3duUHJvcGVydHlTeW1ib2xzKG9iamVjdClcbiAgLmZpbHRlcigoa2V5U3ltYm9sKTogYm9vbGVhbiA9PiBvYmplY3QucHJvcGVydHlJc0VudW1lcmFibGUoa2V5U3ltYm9sKSlcbiJdfQ==
{
"name": "get-own-enumerable-property-symbols",
"version": "2.0.1",
"version": "3.0.0",
"description": "Returns an array of all enumerable symbol properties found directly upon a given object",

@@ -8,9 +8,10 @@ "main": "lib/index.js",

"files": [
"lib"
"lib/index.d.ts",
"lib/index.js"
],
"scripts": {
"lint": "eslint --ext .ts .",
"transpile": "tsc",
"lint-js": "standard",
"unit": "node test.js",
"test": "run-s lint-js transpile unit"
"unit": "node lib/test.js",
"test": "run-s lint transpile unit"
},

@@ -41,6 +42,17 @@ "standard": {

"devDependencies": {
"@types/node": "^9.6.5",
"eslint": "^4.19.1",
"eslint-config-standard-with-typescript": "^4.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"npm-run-all": "^4.0.2",
"standard": "^10.0.0",
"typescript": "^2.3.4"
}
"tsconfigs": "^2.0.0",
"typescript": "2.8.1",
"typescript-eslint-parser": "^14.0.0"
},
"eslintIgnore": [
"*.d.ts"
]
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc