Skip to content

Commit

Permalink
Updated readme, removed commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasz-pluszczewski committed Dec 14, 2017
1 parent 6bb466d commit 259edb6
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion lib/perfect-immutable.js

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

2 changes: 1 addition & 1 deletion lib/perfect-immutable.js.map

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

1 change: 0 additions & 1 deletion lib/perfect-immutable.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ var immutableSet = function immutableSet(object, path) {
var value = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
var delimiter = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : '.';

// console.log('immutableSet', {object, path, value, delimiter});
if (!path) {
return value;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/perfect-immutable.mjs.map

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "perfect-immutable",
"version": "1.0.0",
"version": "1.0.1",
"description": "",
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion src/set.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { tail, isPlainObject, isEmpty, has, reduce } from 'lodash';
* @return {object} new object with value(s) changed
*/
const immutableSet = (object, path, value = null, delimiter = '.') => {
// console.log('immutableSet', {object, path, value, delimiter});
if (!path) {
return value;
}
Expand Down

0 comments on commit 259edb6

Please sign in to comment.