@exobase/client-js
v1.0.0-alpha.24
Published
Javascript client for interacting with the Exobase platform API
Downloads
19
Readme
@exobase/client-js
Javascript client for interacting with the Exobase platform API
Install
yarn add @exobase/client-js
Types are included, if your into that.
Usage
import _ from 'radash'
const list = [1, 2, 3, 4, 5, 6]
const oddsSquared = _.select(list, x = x*x, x => x % 2)
const { odds, evens } = _.group(list, x => x % 2 ? 'odds' : 'evens' )