lix-website/themes/lix/assets/bootstrap/node_modules/es-object-atoms
2024-04-26 22:49:34 -06:00
..
.github initial commit of template 2024-04-26 22:49:34 -06:00
test initial commit of template 2024-04-26 22:49:34 -06:00
.eslintrc initial commit of template 2024-04-26 22:49:34 -06:00
CHANGELOG.md initial commit of template 2024-04-26 22:49:34 -06:00
index.d.ts initial commit of template 2024-04-26 22:49:34 -06:00
index.js initial commit of template 2024-04-26 22:49:34 -06:00
LICENSE initial commit of template 2024-04-26 22:49:34 -06:00
package.json initial commit of template 2024-04-26 22:49:34 -06:00
README.md initial commit of template 2024-04-26 22:49:34 -06:00
RequireObjectCoercible.d.ts initial commit of template 2024-04-26 22:49:34 -06:00
RequireObjectCoercible.js initial commit of template 2024-04-26 22:49:34 -06:00
ToObject.d.ts initial commit of template 2024-04-26 22:49:34 -06:00
ToObject.js initial commit of template 2024-04-26 22:49:34 -06:00
tsconfig.json initial commit of template 2024-04-26 22:49:34 -06: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.