mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
14 lines
235 B
JavaScript
14 lines
235 B
JavaScript
each = require('async')
|
|
|
|
console.log('should be 1')
|
|
|
|
function sync(a, next) {
|
|
next(null, a)
|
|
}
|
|
|
|
each.each([ 'alpha', 'bravo', 'charlie' ], sync, function (err, result) {
|
|
console.log('should be 3')
|
|
})
|
|
|
|
console.log('should be 2')
|