Files
handlebars.js/lib/.eslintrc.js
T
Jakob Linskeseder 2954e7ea66 Don't rely on Node.js global object
If `global` is used and handlebars is compiled for browser
usage without a Node.js `global` polyfill, handlebars
fails with a `global is undefined` error.

Fixes #1593
2021-12-03 21:57:55 +01:00

7 lines
104 B
JavaScript

module.exports = {
env: {
// Handlebars should run natively in the browser
node: false
}
};