UNPKG

@eluvio/elv-js-helpers

Version:

A collection of Javascript helper functions used by several Eluvio libraries.

21 lines (18 loc) 417 B
'use strict' const {Any} = require('objectmodel') /** * Passthrough for `Any` model from [ObjectModel](http://objectmodel.js.org/#doc-any-model) * _(Copyright © 2015 Sylvain Pollet-Villard, MIT license)_ * * Used to define fields that can hold any type. * * @class * @category Model * @sig * -> * * @param {*} - Any input * @returns {*} The input * * */ const AnyModel = Any module.exports = AnyModel