1.0.1 • Published 25 days ago

@npmteam2024/voluptatum-corporis-natus v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
25 days ago

@npmteam2024/voluptatum-corporis-natus 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('@npmteam2024/voluptatum-corporis-natus');
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

limitedmovedataViewESnextschemaECMAScript 2023columnawesomesauceratebreaktrimStartStreamsequalityhashrobustl10ndomsignalwordbreakwriteless mixinsrandomopenerelectronmimewalkurlscompilerexpresswarningmatchAllInt8Arraypoint-freehelpersform-validationestreesymlinksreducerUint8ClampedArraycheckchromiumYAMLes-abstractclientimportmake dirbuffersjsidES2016xssweakmapsymbolpropertysharedvalidaterm -frcall-boundrangeerrorgraphqlstreamgetoptRFC-6455japanesecjkUint32ArrayArrayBuffer.prototype.sliceES2019stringwhatwgmakecharactersObservablesauthwatchingschemeclitakeEStoobjectsigintdeep-copyansicoercibletrimRightcodesbundlingconfigprivate dataefficientcensorclassesFloat64ArrayobjtoStringTagtc39taptypescriptjson-schema-validationJSON-SchematoArraybyteLengthquerypuredircss nestingtapeentriesECMAScript 2017trimLeftgetintrinsicnested csslrumodulesjsdiffio-tsECMAScript 5fast-copytypedarrayharmonyauthenticationwaitreact animationbufferutilitiesrapidfstypeerrorObject.isshamreact-testing-librarymiddlewareES2021metadataparsemulti-packagefullwidthzeropipebatchgenericsajvdragPromiseassertionexpressionapicryptoapollo__proto__utilreadablefasthasOwnjasminegetPrototypeOfmatchessorteddirectoryxhrdatastructureECMAScript 2020fetchsortvalidationserializerjson-schema-validatorassertsflatMapfullECMAScript 6xdg-openredux-toolkitspringnodejspackage.jsonArray.prototype.findLastIndexcolumnstyped arrayobjectpackagesjsoncollectionfull-widthajaxcommand-linebootstrap lessmkdirspropertiesgradients csstelephonecommandspecargumentsES2015jsonschemaoncedescriptioncollection.es6scheme-validationfastifyprocessboundwhichweaksetbrowserbusyinvariantgroupByimmutableperformancecharacterECMAScript 2018removeiteratorsearchmacosjwtqsArray.prototype.includespnpm9jsdomfileemojinegativejsxJSONES2023error-handlingairbnbECMAScript 3zodrequestequales-shimstrimEndbrowserlistkeyregular expressionspushxdgeventsbluebirdqueueMicrotaskstringifyarteseast-asian-widthObject.definePropertydeepcloneposejsonpathreactfastclonereduxvalidatorworkerfiltercss lessresolvelinuxFloat32Arrayhandlerslistenersloginstaller0definePropertyenumerablehttpfindeslint-pluginArray.prototype.flatMapjavascriptRxJSObjectTypedArraybyteOffsetmatchtasknope256URLSearchParamssymbolsclass-validatorcommanderdropmobilereact-hooksperformantgettslibextrakeysmochastreamschinesehttpshascalldotenvchromeES2017Symbol.toStringTagbabelfunctionvarstylingpopmotionsuperagentformsstreams2Uint16Arraytrimguidcss-in-jsjQuerylessdefineWebSocketsprotocol-buffersreal-timetypedrequireoptimizernativeReactiveXObject.fromEntrieslintcurriedoffset[[Prototype]]statussetPrototypeOfurlanimationkarmaES2020exit-codefindLastIndexeslintdependency managerassignsyntaxdescriptorsyupes7less compilerString.prototype.matchAllappbyteObject.valuesgetOwnPropertyDescriptorAsyncIteratordeepcopySymbolyamlnpmconfigurablefindLastformatfantasy-landstructuredClonefoldertermparentpackage managerregexdifftouchutil.inspectbootstrap cssMicrosoftupcmdcore-jscompareInt16Arraywebsitevalueinputpreprocessorgetterformattingsanitizationendersharedarraybufferfast-deep-copyoperating-systemisConcatSpreadabletoolkitsymlinkURLHyBiclassnamegesturesdeletepluginsignalsshimsetterTypeBoxunicodeecmascriptObject.getPrototypeOfopenvalueses2015copyRegExp.prototype.flagscurltypesafepyyamlwritablees2017optimistArray.prototype.findLastcallboundwatchFilestarterTypeScripteslintpluginlinewrapfind-upwalkingphonekoreanBigInt64Arraychannelpositiveasyncduplexdescriptorslotfast-clonebrowserslist$.extendfastcopytestvariables in csscircularpicomatchtacitaccessorexeccssautoprefixersideratelimitsafeArray.prototype.flattenclassnamesprogressvesttypeinspectsetImmediateexitlimitredactloggingthroatargparsecss variableindicatorbannerpromisesES8arraysflagpersistent
1.0.1

25 days ago

1.0.0

26 days ago