diff --git a/src/index.js b/src/index.js index 18650b5..2c1f999 100644 --- a/src/index.js +++ b/src/index.js @@ -8,8 +8,10 @@ extendCore(require('./text')); extendCore(require('./deprecation')); -function extendCore(obj){ - for(var key in obj){ +function extendCore(obj) +{ + for(var key in obj) + { core[key] = obj[key]; } }