UNPKG

lambd

Version:

Create & mantain easily Google Cloud Functiosn and/or AWS Lambdas.

13 lines (12 loc) 226 B
// Platforms Enum const Platforms = { AWS: 0, GCLOUD: 1, isValidPlatform: (platform) => { return ( platform === Platforms.AWS || platform === Platforms.GCLOUD ); }, } module.exports = Platforms;