UNPKG

osls

Version:

Open-source alternative to Serverless Framework

25 lines (20 loc) 799 B
'use strict'; const ensureString = require('type/string/ensure'); const ServerlessError = require('../../../serverless-error'); module.exports = { resolve: ({ address, options, isSourceFulfilled }) => { address = ensureString(address, { isOptional: true, Error: ServerlessError, errorMessage: 'Non-string address argument in variable "opt" source: %v', errorCode: 'INVALID_OPT_SOURCE_ADDRESS', }); if (!isSourceFulfilled) { if (address == null) return { value: null, isPending: true }; if (options[address] !== undefined) return { value: options[address] }; return { value: null, isPending: true }; } if (address == null) return { value: options }; return { value: options[address] == null ? null : options[address] }; }, };