@the_pixelport/aws-lambda-graphql
Version:
Apollo server for AWS Lambda with WebSocket subscriptions support over API Gateway v1 + v2
11 lines • 320 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isTTLExpired = void 0;
function isTTLExpired(ttl) {
if (ttl == null || ttl === false) {
return false;
}
return ttl * 1000 < Date.now();
}
exports.isTTLExpired = isTTLExpired;
//# sourceMappingURL=isTTLExpired.js.map