Bakhtina Sofya b84cb877be 1st comm 2 bulan lalu
..
.github b84cb877be 1st comm 2 bulan lalu
test b84cb877be 1st comm 2 bulan lalu
.eslintrc b84cb877be 1st comm 2 bulan lalu
CHANGELOG.md b84cb877be 1st comm 2 bulan lalu
LICENSE b84cb877be 1st comm 2 bulan lalu
README.md b84cb877be 1st comm 2 bulan lalu
RequireObjectCoercible.d.ts b84cb877be 1st comm 2 bulan lalu
RequireObjectCoercible.js b84cb877be 1st comm 2 bulan lalu
ToObject.d.ts b84cb877be 1st comm 2 bulan lalu
ToObject.js b84cb877be 1st comm 2 bulan lalu
index.d.ts b84cb877be 1st comm 2 bulan lalu
index.js b84cb877be 1st comm 2 bulan lalu
package.json b84cb877be 1st comm 2 bulan lalu
tsconfig.json b84cb877be 1st comm 2 bulan lalu

README.md

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.