Skip to content

Commit

Permalink
🐛 Add string namespace to seq.chain and util.using fix #103
Browse files Browse the repository at this point in the history
  • Loading branch information
nlepage committed Sep 7, 2017
1 parent 5e2a996 commit b0338a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/seq/ChainWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import * as collection from 'collection'
import * as lang from 'lang'
import * as math from 'math'
import * as object from 'object'
import * as string from 'string'

import concat from 'lodash/concat'
import flow from 'lodash/flow'
Expand Down Expand Up @@ -125,6 +126,7 @@ class ChainWrapper {
lang,
math,
object,
string,
].forEach(namespace => Object.assign(
ChainWrapper.prototype,
mapValues(
Expand Down
2 changes: 2 additions & 0 deletions src/util/UsingWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import * as collection from 'collection'
import * as lang from 'lang'
import * as math from 'math'
import * as object from 'object'
import * as string from 'string'

import concat from 'lodash/concat'
import drop from 'lodash/drop'
Expand Down Expand Up @@ -74,6 +75,7 @@ class UsingWrapper {
lang,
math,
object,
string,
].forEach(namespace => Object.assign(
UsingWrapper.prototype,
mapValues(
Expand Down

0 comments on commit b0338a3

Please sign in to comment.