From 0b9c9bd1ee2569fc1cdf021ab7f511881bae8aac Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 19 Dec 2015 02:13:10 -0800 Subject: [PATCH] letiny-core -> core to avoid confusion --- index.js | 2 +- lib/{letiny-core.js => core.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/{letiny-core.js => core.js} (100%) diff --git a/index.js b/index.js index 21e7b24..a6af16e 100644 --- a/index.js +++ b/index.js @@ -32,7 +32,7 @@ LE.create = function (defaults, handlers, backend) { b = defaults; d = handlers; h = backend; defaults = d; handlers = h; backend = b; } - if (!backend) { backend = require('./lib/letiny-core'); } + if (!backend) { backend = require('./lib/core'); } if (!handlers) { handlers = {}; } if (!handlers.lifetime) { handlers.lifetime = 90 * 24 * 60 * 60 * 1000; } if (!handlers.renewWithin) { handlers.renewWithin = 3 * 24 * 60 * 60 * 1000; } diff --git a/lib/letiny-core.js b/lib/core.js similarity index 100% rename from lib/letiny-core.js rename to lib/core.js