UNPKG

dynamoose

Version:

Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)

14 lines 335 B
"use strict"; let status = true; // Indicated if log events are being emitted to log providers or not module.exports = { "pause": () => { status = false; }, "resume": () => { status = true; }, "status": () => { return status ? "active" : "paused"; } }; //# sourceMappingURL=status.js.map