Skip to content

Commit

Permalink
Do prod builds for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Feldman committed Jan 31, 2018
1 parent b8897bc commit c26816d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions seamless-immutable.development.js
Expand Up @@ -484,7 +484,7 @@ function immutableInit(config) {
var immutableEmptyObject = Immutable({});

function objectSetIn(path, value, config) {
if (!(path instanceof Array) || path.length === 0) {
if (!(Array.isArray(path)) || path.length === 0) {
throw new TypeError("The first argument to Immutable#setIn must be an array containing at least one \"key\" string.");
}

Expand Down Expand Up @@ -613,8 +613,8 @@ function immutableInit(config) {
}

function isBlobObject(obj) {
return typeof Blob !== 'undefined' &&
obj instanceof Blob;
return typeof Blob !== 'undefined' &&
obj instanceof Blob;
}

function isPromise(obj) {
Expand Down
2 changes: 1 addition & 1 deletion seamless-immutable.development.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c26816d

Please sign in to comment.