mirror of
https://github.com/discourse/discourse.git
synced 2025-02-18 00:42:45 +08:00
10 lines
307 B
JavaScript
10 lines
307 B
JavaScript
![]() |
// allow us to import this as a module
|
||
|
if (typeof define !== "undefined") {
|
||
|
define("handlebars", ["exports"], function(__exports__) {
|
||
|
// It might not be defined server side, which is OK for pretty-text
|
||
|
if (typeof Handlebars !== "undefined") {
|
||
|
__exports__.default = Handlebars;
|
||
|
}
|
||
|
});
|
||
|
}
|