UNPKG

@bitblit/ratchet-epsilon-common

Version:

Tiny adapter to simplify building API gateway Lambda APIS

13 lines 500 B
import { StringRatchet } from '@bitblit/ratchet-common/lang/string-ratchet'; export class EpsilonBuildProperties { constructor() { } buildVersion = 'LOCAL-SNAPSHOT'; buildHash = 'LOCAL-HASH'; buildBranch = 'LOCAL-BRANCH'; buildTag = 'LOCAL-TAG'; get buildBranchOrTag() { return StringRatchet.trimToNull(this.buildBranch) ? 'BRANCH:' + this.buildBranch : 'TAG:' + this.buildTag; } buildTime = 'LOCAL-TIME'; } //# sourceMappingURL=epsilon-build-properties.js.map