Skip to content

parshap/immutable-to-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

immutable-to-js

Function to convert an immutable-js value to a regular JavaScript value. If the given value is not an immutable-js value, it is simply returned.

Use Case

When using Immutable.fromJS(value) on arbitrary values a non-immutable value can be returned (e.g., Immutable.fromJS(5) === 5). To then convert the value back to a regular js object, we have to first make sure the value is an immutable value and then call .toJS() on it. This module provides a static toJS(value) function that performs the necessary type checking to guarantee the return value is a regular js object.

var value = Immutable.fromJS(someValue); // May result in immutable, may not
var unwrapped = toJS(value); // Guarantee value is not immutable

Example

var toJS = require("immutable-to-js");
var Immutable = require("immutable");

toJS(Immutable.Map({ foo: 1 })); // -> { foo: 1 }
toJS(Immutable.fromJS([1, 2, 3])); // -> [1, 2, 3]
toJS("hello"); // -> "hello"
toJS(5); // -> 5

API

var toJS = require("immutable-to-js");

toJS(value)

Convert value to a regular js value. If value is not an immutable-js value, it is simply returned.

About

Convert immutable-js value to regular js value

Resources

Stars

Watchers

Forks

Packages

No packages published