mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-04 22:30:00 -06:00
9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
const _ = require('lodash')
|
|
const Promise = require('bluebird')
|
|
|
|
module.exports = (options) => {
|
|
return Promise.try(() => {
|
|
return _.toNumber(options.exitWithCode)
|
|
})
|
|
}
|