JSPM

  • Created
  • Published
  • Downloads 552
  • Score
    100M100P100Q38300F
  • License BSD-2-Clause

attribute meta description

Package Exports

  • model-attributes

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (model-attributes) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

npm Greenkeeper semantic-release styled with prettier Build Status codecov.io Known Vulnerabilities GitHub Issues Dependency Status devDependency Status docs downloads Commitizen friendly

model-attributes

attribute meta description

const { createAttributes } from 'model-attributes';

const attributes = ma.createAttributes({
  att1: {},
  att2: { datault: 2}
});

const object = {};

ma.setAttributes(object, attributes, {
  att1: 'value1'
});

console.log(object.att1); // value1
console.log(object.att2); // 2

API

Table of Contents

model-attributes

setAttributes

Copies attribute values from a source object into a destination object.

Parameters

  • dest Object target object to be modified
  • atts Object attribute definitions to be used
  • src Object origin of the data to be copied
  • cb function callback to be executed for each copied value
  • prefix string name prefix used for all attributes

Returns undefined

getAttribute

Delivers a attribute value for a given attribute name

Parameters

  • object Object to query
  • atts Object attribute definitions to be used
  • path string attribute name

Returns Any attribute value

getAttributes

Retrive attribute values from an object

Parameters

  • object Object attribute value source
  • attributes Object
  • options Object (optional, default {})

Returns Object values

createAttributes

Create attributes from its definition

Parameters

Returns Object attributes

mergeAttributes

Merge attribute definitions

Parameters

  • dest Object attribute definitions to be used also the merge target
  • atts Object attribute definitions to be used

Returns Object merged definitions (dest)

install

With npm do:

npm install model-attributes

license

BSD-2-Clause