Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 273 Bytes

array.rst

File metadata and controls

12 lines (8 loc) · 273 Bytes

Array

Value type for representing an array. Mostly used when converting to and from JSON.

js

const values = require('abstract-things/values');

const json = values.toJSON('array', [ 'one', 'two' ]); const array = values.fromJSON('array', json);