marko/test/autotests/render/script-nonce/script-nonce-transformer.js
Patrick Steele-Idem 5df81440e5 Reorganized tests
2016-05-05 07:56:24 -07:00

8 lines
213 B
JavaScript

module.exports = function transform(el, context) {
if (el.hasAttribute('csp-nonce')) {
el.removeAttribute('csp-nonce');
el.setAttributeValue('nonce', context.builder.literal('foo'));
}
};