PromoCursed/node_modules/es-object-atoms
2024-08-20 23:25:37 +04:00
..
.github Первый коммит 2024-08-20 23:25:37 +04:00
test Первый коммит 2024-08-20 23:25:37 +04:00
.eslintrc Первый коммит 2024-08-20 23:25:37 +04:00
CHANGELOG.md Первый коммит 2024-08-20 23:25:37 +04:00
index.d.ts Первый коммит 2024-08-20 23:25:37 +04:00
index.js Первый коммит 2024-08-20 23:25:37 +04:00
LICENSE Первый коммит 2024-08-20 23:25:37 +04:00
package.json Первый коммит 2024-08-20 23:25:37 +04:00
README.md Первый коммит 2024-08-20 23:25:37 +04:00
RequireObjectCoercible.d.ts Первый коммит 2024-08-20 23:25:37 +04:00
RequireObjectCoercible.js Первый коммит 2024-08-20 23:25:37 +04:00
ToObject.d.ts Первый коммит 2024-08-20 23:25:37 +04:00
ToObject.js Первый коммит 2024-08-20 23:25:37 +04:00
tsconfig.json Первый коммит 2024-08-20 23:25:37 +04:00

es-object-atoms Version Badge

github actions coverage License Downloads

npm badge

ES Object-related atoms: Object, ToObject, RequireObjectCoercible.

Example

const assert = require('assert');

const $Object = require('es-object-atoms');
const ToObject = require('es-object-atoms/ToObject');
const RequireObjectCoercible = require('es-object-atoms/RequireObjectCoercible');

assert.equal($Object, Object);
assert.throws(() => ToObject(null), TypeError);
assert.throws(() => ToObject(undefined), TypeError);
assert.throws(() => RequireObjectCoercible(null), TypeError);
assert.throws(() => RequireObjectCoercible(undefined), TypeError);

assert.deepEqual(RequireObjectCoercible(true), true);
assert.deepEqual(ToObject(true), Object(true));

const obj = {};
assert.equal(RequireObjectCoercible(obj), obj);
assert.equal(ToObject(obj), obj);

Tests

Simply clone the repo, npm install, and run npm test

Security

Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.