12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
|
var adapter = require('./');
|
||
|
|
||
|
/**
|
||
|
* Extracts the values from process.env.
|
||
|
*
|
||
|
* @type {Function}
|
||
|
* @public
|
||
|
*/
|
||
|
module.exports = adapter(function storage() {
|
||
|
return localStorage.getItem('debug') || localStorage.getItem('diagnostics');
|
||
|
});
|