Merge branch 'master' into add-toCurrency

This commit is contained in:
King David Martins
2018-01-28 15:43:02 -05:00
committed by GitHub
7 changed files with 1025 additions and 830 deletions

View File

@ -1,8 +1,10 @@
const bindAll = (obj, ...fns) =>
fns.forEach(
fn =>
(f = obj[fn], obj[fn] = function() {
fn => (
(f = obj[fn]),
(obj[fn] = function() {
return f.apply(obj);
})
)
);
module.exports = bindAll

File diff suppressed because it is too large Load Diff