1.0.0 • Published 1 year ago

@rabiepenpm/dolor-ipsam-laborum v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@rabiepenpm/dolor-ipsam-laborum Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ES2015 mostly-spec-compliant Reflect.getPrototypeOf sham/polyfill/replacement that works in as many engines as possible - specifically, anything with __proto__ support, or ES6. Built-in types will also work correctly in older engines.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.

Example

var getPrototypeOf = require('@rabiepenpm/dolor-ipsam-laborum');
var assert = require('assert');

assert.throws(() => getPrototypeOf(true));
assert.throws(() => getPrototypeOf(42));
assert.throws(() => getPrototypeOf(''));
assert.equal(getPrototypeOf(/a/g), RegExp.prototype);
assert.equal(getPrototypeOf(new Date()), Date.prototype);
assert.equal(getPrototypeOf(function () {}), Function.prototype);
assert.equal(getPrototypeOf([]), Array.prototype);
assert.equal(getPrototypeOf({}), Object.prototype);
var getPrototypeOf = require('@rabiepenpm/dolor-ipsam-laborum');
var assert = require('assert');
/* when Reflect or Reflect.getPrototypeOf is not present */
if (typeof Reflect === 'object') { delete Reflect.getPrototypeOf; }
delete globalThis.Reflect;
var shimmed = getPrototypeOf.shim();
assert.equal(shimmed, getPrototypeOf.getPolyfill());

assert.throws(() => Reflect.getPrototypeOf(true));
assert.throws(() => Reflect.getPrototypeOf(42));
assert.throws(() => Reflect.getPrototypeOf(''));
assert.equal(Reflect.getPrototypeOf(/a/g), RegExp.prototype);
assert.equal(Reflect.getPrototypeOf(new Date()), Date.prototype);
assert.equal(Reflect.getPrototypeOf(function () {}), Function.prototype);
assert.equal(Reflect.getPrototypeOf([]), Array.prototype);
assert.equal(Reflect.getPrototypeOf({}), Object.prototype);
var getPrototypeOf = require('@rabiepenpm/dolor-ipsam-laborum');
var assert = require('assert');
/* when Reflect.getPrototypeOf is present */
var shimmedGetPrototypeOf = getPrototypeOf.shim();
assert.equal(shimmedGetPrototypeOf, Reflect.getPrototypeOf);
assert.equal(Reflect.getPrototypeOf([]), Array.prototype);

Tests

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

deepviewmimetypesdomargumentSetclassnamestrimcurlbabellogcall-bindbatchtoSortedbusyidletypeES2021assigncall-boundfullwidthjson-schema-validatorhasOwnfixed-widthregexpcomputed-typesinputArray.prototype.flatbyteOffsetcharacterscallbindreal-timevalidationrgbjsxreduxmovetypesapolloES8propjasmineInt8Arrayjoiutiles2016Object.entriesdayjscore-jsclireusesetImmediatefseventscoercibleconsoleoptimizerprotoarktypeargvimmerthreeES2020shimstylingstatusawaitshebangfilekoreanReactiveXdropES2018css lessfilterRxJSio-tstranspilerposesettergdprinternalObject.definePropertyrm -rfReactiveExtensionstypedarrayextensioniteratorHyBiutilitiesredux-toolkitshellreducerweaksetfunctiondataviewfastclonemixinsqueryansidependency managerfindLastIndex6to5collection.es6find-upesserializationnumbereveryserializenamesworkerchannelbuffernodejseslintpluginECMAScript 7css-in-jscallbackoffsetprivate dataECMAScript 3wrapinstallerexpressionutilityscheme-validationdescriptorvalidatorloggerlength[[Prototype]]pluginserializerdirPushmakecircularoptimistpackage.jsonzodmodulecodestouchArray@@toStringTagtaphardlinksregulartostringtagharmonyprefixoperating-systemtestingStreamssymlinktsbundlingredactURLchineseBigInt64ArraybcryptRxtypedarraysobjectestree3dECMAScript 2023syntaxstreamlinewrapvariables in cssdescriptionjsonschemaless mixinscss variablewalklrui18nes-shim APIgenericsspringcorsentriesPromisedefineaccessorprotocol-buffersflatMapchaioutputmergeArray.prototype.findLastIndexurlisConcatSpreadableexit-codefunctionsinternal slottc39TypeBoxduplexsetPrototypeOfspinnerfindtslibmobilelinkperformantcreatemake dirstyleconcurrencyawesomesauceutil.inspectglobrm -frpreserve-symlinksemojirmworkspace:*Object.isJSONESsameValueZeroUint8Arrayfunctionalwordwrapgradients csschromepostcss-plugina11yiterationindicatorframer0IteratormkdirslimitedgetintrinsicObject.getPrototypeOfperformanceFloat64Arrayremoveeast-asian-widthtraversedeepcopyqueueponyfillcjkdeterministicbyteLengthes2017css nestingtypeerrorsuperagentArray.prototype.containsarrayomittoolsjsonpathtypanionlimitvaluesfindupless cssprototypeinferencedotenvstatelessschemefastcopyfetchescapeguidinvariantupassertparsestabledependenciespasswordwatchFilefindLast
1.0.0

1 year ago