Files
install-nix-action/node_modules/handlebars/lib/handlebars/no-conflict.js
Domen Kožar 08403cd828 v5
2019-11-13 17:14:48 +01:00

14 lines
369 B
JavaScript

/* global window */
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;
};
}