Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
define-properties-x
Advanced tools
Based on the original work by Jordan Harband https://www.npmjs.com/package/define-properties
Based on the original work by Jordan Harband
define-properties
.
es5-sham.js
monkey-patches other ES5 methods as closely as possible.
For these methods, as closely as possible to ES5 is not very close.
Many of these shams are intended only to allow code to be written to ES5
without causing run-time errors in older engines. In many cases,
this means that these shams cause many ES5 methods to silently fail.
Decide carefully whether this is what you want. Note: es5-sham.js requires
es5-shim.js to be able to work properly.
json3.js
monkey-patches the EcmaScript 5 JSON implimentation faithfully.
es6.shim.js
provides compatibility shims so that legacy JavaScript engines
behave as closely as possible to ECMAScript 6 (Harmony).
Version: 1.1.0
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750
define-properties-x~supportsDescriptors
: boolean
Boolean indicator as to whether the environments supports descriptors or not.
Kind: inner property of define-properties-x
Example
var define = require('define-properties-x');
define.supportsDescriptors; // true or false
define-properties-x~property(object, prop, value, [force])
Just like properties
but for defining a single non-enumerable
property. Useful in environments that do not
support Computed property names
. This can be done
with properties
, but this method can read a little cleaner.
Kind: inner method of define-properties-x
Param | Type | Default | Description |
---|---|---|---|
object | Object | The object on which to define the property. | |
prop | string | Symbol | The property name. | |
value | * | The value of the property. | |
[force] | boolean | false | If true then set property regardless. |
Example
var define = require('define-properties-x');
var myString = 'something';
define.property(obj, Symbol.iterator, function () {}, true);
define.property(obj, myString, function () {}, true);
define-properties-x~properties(object, map, [predicates])
Define multiple non-enumerable properties at once.
Uses Object.defineProperty
when available; falls back to standard
assignment in older engines. Existing properties are not overridden.
Accepts a map of property names to a predicate that, when true,
force-overrides.
Kind: inner method of define-properties-x
Param | Type | Description |
---|---|---|
object | Object | The object on which to define the property. |
map | Object | The object of properties. |
[predicates] | Object | The object of property predicates. |
Example
var define = require('define-properties-x');
define.properties({
a: 1,
b: 2
}, {
a: function () { return false; },
b: function () { return true; }
});
FAQs
Define multiple non-enumerable properties at once.
The npm package define-properties-x receives a total of 7 weekly downloads. As such, define-properties-x popularity was classified as not popular.
We found that define-properties-x demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.