Bakhtina Sofya b84cb877be 1st comm 3 週間 前
..
.github b84cb877be 1st comm 3 週間 前
test b84cb877be 1st comm 3 週間 前
.eslintrc b84cb877be 1st comm 3 週間 前
CHANGELOG.md b84cb877be 1st comm 3 週間 前
LICENSE b84cb877be 1st comm 3 週間 前
README.md b84cb877be 1st comm 3 週間 前
RequireObjectCoercible.d.ts b84cb877be 1st comm 3 週間 前
RequireObjectCoercible.js b84cb877be 1st comm 3 週間 前
ToObject.d.ts b84cb877be 1st comm 3 週間 前
ToObject.js b84cb877be 1st comm 3 週間 前
index.d.ts b84cb877be 1st comm 3 週間 前
index.js b84cb877be 1st comm 3 週間 前
package.json b84cb877be 1st comm 3 週間 前
tsconfig.json b84cb877be 1st comm 3 週間 前

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.