17 lines
650 B
JavaScript
17 lines
650 B
JavaScript
|
"use strict";
|
||
|
// -------------------------------------------------------------
|
||
|
// WARNING: this file is used by both the client and the server.
|
||
|
// Do not use any browser or node-specific API!
|
||
|
// -------------------------------------------------------------
|
||
|
/* eslint hammerhead/proto-methods: 2 */
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
const POSTFIX = '-hammerhead-shadow-ui';
|
||
|
exports.default = {
|
||
|
postfix: POSTFIX,
|
||
|
charset: 'charset' + POSTFIX,
|
||
|
script: 'script' + POSTFIX,
|
||
|
selfRemovingScript: 'self-removing-script' + POSTFIX,
|
||
|
uiStylesheet: 'ui-stylesheet' + POSTFIX,
|
||
|
};module.exports = exports.default;
|
||
|
|