immutable-js-oss / immutable-js

Immutable persistent data collections for Javascript which increase efficiency and simplicity.
https://immutable-js-oss.github.io/immutable-js/
MIT License
37 stars 6 forks source link

isList, isMap, isOrderedList, isOrderedMap e.t.c. are not exported #157

Closed Methuselah96 closed 4 years ago

Methuselah96 commented 4 years ago

From @GolubevS on Sun, 06 Oct 2019 07:16:48 GMT

What happened

isList, isMap, isOrderedList, isOrderedMap e.t.c. are not exported from immutable.es.js

How to reproduce

import {Map, isOrderedMap} from 'immutable';
console.log(isOrderedMap(Map({b:1,a:2}).sort()));

Result:

export 'isOrderedMap' was not found in 'immutable'

Copied from original issue: https://github.com/immutable-js/immutable-js/issues/1740

Methuselah96 commented 4 years ago

Resolved in https://github.com/immutable-js-oss/immutable-js/pull/20.