6186128ad0
Pulled from 4.x branch, see #1894.
12 lines
279 B
JavaScript
12 lines
279 B
JavaScript
export default function (Handlebars) {
|
|
let $Handlebars = globalThis.Handlebars;
|
|
|
|
/* istanbul ignore next */
|
|
Handlebars.noConflict = function () {
|
|
if (globalThis.Handlebars === Handlebars) {
|
|
globalThis.Handlebars = $Handlebars;
|
|
}
|
|
return Handlebars;
|
|
};
|
|
}
|