mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
1fb23f1897
PR-URL: https://github.com/nodejs/node/pull/53875 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
'use strict';
|
|
const {
|
|
ObjectDefineProperties,
|
|
} = primordials;
|
|
const { ERR_INVALID_ARG_VALUE } = require('internal/errors').codes;
|
|
const { getOptionValue } = require('internal/options');
|
|
const { emitExperimentalWarning } = require('internal/util');
|
|
const { kConstructorKey, Storage } = internalBinding('webstorage');
|
|
const { getValidatedPath } = require('internal/fs/utils');
|
|
const kInMemoryPath = ':memory:';
|
|
|
|
emitExperimentalWarning('Web Storage');
|
|
|
|
module.exports = { Storage };
|
|
|
|
let lazyLocalStorage;
|
|
let lazySessionStorage;
|
|
|
|
ObjectDefineProperties(module.exports, {
|
|
__proto__: null,
|
|
localStorage: {
|
|
__proto__: null,
|
|
configurable: true,
|
|
enumerable: true,
|
|
get() {
|
|
if (lazyLocalStorage === undefined) {
|
|
const location = getOptionValue('--localstorage-file');
|
|
|
|
if (location === '') {
|
|
throw new ERR_INVALID_ARG_VALUE('--localstorage-file',
|
|
location,
|
|
'is an invalid localStorage location');
|
|
}
|
|
|
|
lazyLocalStorage = new Storage(kConstructorKey, getValidatedPath(location));
|
|
}
|
|
|
|
return lazyLocalStorage;
|
|
},
|
|
},
|
|
sessionStorage: {
|
|
__proto__: null,
|
|
configurable: true,
|
|
enumerable: true,
|
|
get() {
|
|
if (lazySessionStorage === undefined) {
|
|
lazySessionStorage = new Storage(kConstructorKey, kInMemoryPath);
|
|
}
|
|
|
|
return lazySessionStorage;
|
|
},
|
|
},
|
|
});
|