Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@masteravodoprovodchiki/casttovania

Convert string to something

readme

CastToVania

CircleCI

Cast your string to something another
Maybe to string, maybe to number, maybe to array of numbers!
Also supports booleans

Installation

yarn add @masteravodoprovodchiki/casttovania

# if you use npm

npm i --save @masteravodoprovodchiki/casttovania

Examples

const cast = require('@masteravodoprovodchiki/casttovania')

const number = cast('1')            // will be 1
const number = cast('true')         // will be true
const number = cast('TRUE')         // will be true
const number = cast('TrUe')         // will be true
const number = cast('false')        // will be false
const string = cast('foo')          // will be 'foo'
const array0 = cast('foo,bar')      // will be ['foo', 'bar']
const array1 = cast('foo,1')        // will be ['foo', 1]
const array2 = cast('foo,')         // will be ['foo']