1.0.0 • Published 1 year ago

@skylernpm/doloribus-praesentium-cupiditate v1.0.0

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

@skylernpm/doloribus-praesentium-cupiditate Version Badge

github actions coverage License Downloads

npm badge

Returns true if a value has the characteristics of a valid JavaScript data descriptor.

Examples

true when the descriptor has valid properties with valid values. false when not an object or when the object has invalid properties.

var isDataDesc = require('@skylernpm/doloribus-praesentium-cupiditate');
var assert = require('assert');

assert.equal(true, isDataDesc({ value: 'foo' }));
assert.equal(true, isDataDesc({ value: function () {} }));
assert.equal(true, isDataDesc({ value: true }));

assert.equal(false, isDataDesc('a'));
assert.equal(false, isDataDesc(null));
assert.equal(false, isDataDesc([]));

assert.equal(false, isDataDesc({ value: 'foo', bar: 'baz' }));
assert.equal(false, isDataDesc({ value: 'foo', bar: 'baz' }));
assert.equal(false, isDataDesc({ value: 'foo', get: function () {} }));
assert.equal(false, isDataDesc({ get: function () {}, value: 'foo' }) );
 
assert.equal(false, isDataDesc({ value: 'foo', enumerable: 'foo' }));
assert.equal(false, isDataDesc({ value: 'foo', configurable: 'foo' }));
assert.equal(false, isDataDesc({ value: 'foo', writable: 'foo' }));

Valid properties

The only valid data descriptor properties are the following:

  • configurable (required)
  • enumerable (required)
  • value (optional)
  • writable (optional)

To be a valid data descriptor, either value or writable must be defined.

Invalid properties

A descriptor may have additional invalid properties (an error will not be thrown).

var foo = {};

Object.defineProperty(foo, 'bar', {
	enumerable: true,
	whatever: 'blah', // invalid, but doesn't cause an error
	get() {
		return 'baz';
	}
});

assert.equal(foo.bar, 'baz');

Related projects

  • is-accessor-descriptor: Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.
  • is-descriptor: Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for… more

Tests

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

css-in-jstoArraywarningsigtermdatastructureentrieswatching256tc39telephoneArray.prototype.flattensymlinksspinnersmobilewatchFilechromiumessequencetddarraysECMAScript 2019streams2requirekeysES5configAsyncIteratorString.prototype.trimnamexhrlesscssprefixlimites-shimsloadingsidespinnermruString.prototype.matchAllsettingsencryptionsymlinkPromiseminimalmodulesagentmatchjsrmdescriptorcloudformationfastifybrowserJSON-Schemafile systemArray.prototype.findLastreact-hook-form[[Prototype]]persistentbluebirdtimelessxtermWeakMapcorees2015configurablefileelmbindswffastArrayBuffer.prototype.slicewriteprivate datagetvalidshimdomfseventsjsonpathsuperagenttaskastguidpackageshrinkwrapSymbol.toStringTagmimereducepyyamlstatehottoStringTagutilpipereadablepromisesruntimerapidlibphonenumberReactiveXflatECMAScript 2015prettytostringtagvariablestapeargumentreuseupchromebannerjwttermphonedeepcopyperformancetypestreamenvES2016fetchsearchBigUint64ArrayArray.prototype.findLastIndexrfc4122slicestringifierdataViewgdprgradients css3jsdiffvaluesetPrototypeOftyped arraybytenested csshas-ownBigInt64ArrayeslintpluginJSONreact-testing-librarythroatInt32ArrayclasseschaikinesisObject.definePropertyconcatTypeScriptES2015URLWebSocketassertawesomesaucestylesECMAScript 2018dom-testing-libraryTypeBoxwindowsmimetypesequalitytestingmodulefast-deep-copydataviewclassnamesRxJScommander0nodeinternalbyteOffsetquote.envyamlroutingdescriptorslinkjsonmkdirsieajaxobjserializeECMAScript 2016serializeriteratefindLastIndexreplaytypedarraysprocessbrowserslistfunctionallimitedairbnbtoobjectslotcharacteroncewrapObject.assignReactiveExtensionsArray.prototype.includesES2018Object.keyssham_.extendfindLastwatchnegative zeronamesnumbermonorepoRegExp.prototype.flagsgroupBytouchform-validationArray.prototype.flatUint8ClampedArraymulti-packageoutputemrargsboundfast-cloneratelimitjasminevpcirqvaluescryptroute53styleObject.isbreakrm -frglobrandomexecECMAScript 2017less mixinscolumnio-tssameValueZeronpmtypanionexit-codecharactersless.jspositivelastperformantloggingfast-copyCSSfull-widthtapObservablespostcssdotenvspecoptioncircularcollectionlanguageshebangUint16Arraywebimportexportidleplugincacheansiwalkingschemelazynopedeep-copygetOwnPropertyDescriptorarraybufferhelpersfixed-widthpropdynamodbtestArrayBuffer#slicesqsmakemapreduceinspectwordwrapwalkES2020callboundcloudsearcharktypeIteratorcoloursimpledbtslibhigher-orderweaksetemititeratorESmomentfsArray.prototype.flatMapunicodeauthsettypeofURLSearchParamsponyfillregexpassertscode pointses2016emojiinferenceformvalidationsafeSymbolreadjavascripttraversedeterministicqueuecommand-linequeueMicrotaskECMAScript 5typedarrayObject.valuesinappcodesreal-timeregular expressiones5linewrap-0parentsmacosmetadatafindupjapanesegetoptec2glacierflatMapenvironmentObject.getPrototypeOftoolssnses8bcryptpusherroriterationconcurrencymoveproxynodejstscompilerecmascripturlwhatwgcss nestingReflect.getPrototypeOfdayjsmapdatebuffertypesafetoolkit@@toStringTagavaterminalopenstableworkspace:*qsparsingelectronloggervariables in cssaccessorpicomatchmatchesassertiones2018extensionhasOwnamazonRFC-6455textkeyStreamsgetteri18nsymbolES8parseeslintconfigexpressTypedArrayObjectUint32ArraybusytrimstatelesslookvesthashfastcloneaccessibilitycallbackworkflowES2019rdswaiteslint-pluginlintES3yuphookformzero__proto__requestArrayfpsES2017serializationcryptonegativeframeworkStreambeanstalksyntaxrangeerrorreducerequalcore-jswgetECMAScript 2021Object.entrieshasclistoragegatewayfigletremovedirtypeerrorsortedescapecompareobjecttoSortedSetexitduplexhttpdeletedeepclonemkdirpES6finddebugpolyfillECMAScript 2023callbinddescriptionsinatrazodclass-validatorawsflagspostcss-plugin
1.0.0

1 year ago