0.1.3 • Published 6 years ago

iterable-from v0.1.3

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

iterable-from

NOTE: iterable-from was renamed to @extra-iterable/from. NPM

Get iterable from value, like Array.from().

const from = require('iterable-from');
// from(<value>)

from([8, 1, 12, 15]);
// [8, 1, 12, 15]
from(new Set('halo'));
// Set {'h', 'a', 'l', 'o'}
from({h: 'hindustan', a: 'aeronautics', l: 'limited', o: 'operation'});
// [['h', 'hindustan'], ['a', 'aeronautics'], ['l', 'limited'], ['o', 'operation']]
from(811215);
// [811215]
0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago