aws-transcode
Advanced tools
Comparing version 1.0.0-0 to 1.0.0-1
{ | ||
"name": "aws-transcode", | ||
"version": "1.0.0-0", | ||
"version": "1.0.0-1", | ||
"description": "A promise based wrapper to make transcoding with AWS easy.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
const abind = require('abind'); | ||
const AWS = require('aws-sdk'); | ||
const debug = require('debug')('transcode'); | ||
const debug = require('debug')('aws-transcode'); | ||
const delay = require('delay'); | ||
@@ -53,3 +53,3 @@ | ||
return outputs.reduce(async (acc, output) => { | ||
return await this.checkExists(output) ? acc : [...acc, output]; | ||
return (await this.checkExists(output)) ? acc : [...(await acc), output]; | ||
}, []); | ||
@@ -56,0 +56,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10257