fixed .forEach return

This commit is contained in:
2016-11-25 11:19:12 +01:00
parent 8b891c74e4
commit 54d8ef2576
3 changed files with 10 additions and 10 deletions

View File

@ -75,15 +75,15 @@ let defaultExport = (
}
export let forEach = (funcArg: IPromiseFunction) => {
defaultExport(funcArg, 'forEach')
return defaultExport(funcArg, 'forEach')
}
export let forFirst = (funcArg: IPromiseFunction) => {
defaultExport(funcArg, 'forFirst')
return defaultExport(funcArg, 'forFirst')
}
export let atEnd = (funcArg: IPromiseFunction) => {
defaultExport(funcArg, 'atEnd')
return defaultExport(funcArg, 'atEnd')
}
export default defaultExport