frontend/.pnpm-store/v3/files/49/61e04b8cdd2c22cb2877785bcf7cb6e0f0bcc798700c43234dad81c29f05352a714442973601b5994d007a0d3591b7e594570269b7e9ed5ec90a843355627d

13 lines
347 B
Plaintext

export default function(Handlebars) {
/* istanbul ignore next */
let root = typeof global !== 'undefined' ? global : window,
$Handlebars = root.Handlebars;
/* istanbul ignore next */
Handlebars.noConflict = function() {
if (root.Handlebars === Handlebars) {
root.Handlebars = $Handlebars;
}
return Handlebars;
};
}