gitextract_nws7_sbo/ ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .oxfmtrc.json ├── .oxlintrc.json ├── .swcrc ├── CONTRIBUTING.md ├── FAQ.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── SECURITY.md ├── bin/ │ └── handlebars.mjs ├── components/ │ ├── bower.json │ ├── component.json │ ├── composer.json │ ├── handlebars-source.gemspec │ ├── handlebars.js.nuspec │ ├── lib/ │ │ └── handlebars/ │ │ └── source.rb │ └── package.json ├── docs/ │ ├── compiler-api.md │ └── decorators-api.md ├── eslint.config.mjs ├── lib/ │ ├── handlebars/ │ │ ├── base.js │ │ ├── compiler/ │ │ │ ├── ast.js │ │ │ ├── code-gen.js │ │ │ ├── compiler.js │ │ │ └── javascript-compiler.js │ │ ├── decorators/ │ │ │ └── inline.js │ │ ├── decorators.js │ │ ├── helpers/ │ │ │ ├── block-helper-missing.js │ │ │ ├── each.js │ │ │ ├── helper-missing.js │ │ │ ├── if.js │ │ │ ├── log.js │ │ │ ├── lookup.js │ │ │ └── with.js │ │ ├── helpers.js │ │ ├── internal/ │ │ │ ├── proto-access.js │ │ │ └── wrapHelper.js │ │ ├── logger.js │ │ ├── no-conflict.js │ │ ├── runtime.js │ │ ├── safe-string.js │ │ └── utils.js │ ├── handlebars.js │ ├── handlebars.runtime.js │ ├── index.js │ └── precompiler.js ├── package.json ├── release-notes.md ├── rspack.config.js ├── runtime.d.ts ├── runtime.js ├── spec/ │ ├── artifacts/ │ │ ├── bom.handlebars │ │ ├── empty.handlebars │ │ ├── example_1.handlebars │ │ ├── example_2.hbs │ │ ├── known.helpers.handlebars │ │ ├── non.default.extension.hbs │ │ └── partial.template.handlebars │ ├── ast.js │ ├── basic.js │ ├── blocks.js │ ├── builtins.js │ ├── compiler.js │ ├── data.js │ ├── env/ │ │ ├── browser-vitest-pre.js │ │ ├── browser-vitest.js │ │ ├── browser.js │ │ ├── common.js │ │ └── node.js │ ├── expected/ │ │ ├── bom.amd.js │ │ ├── compiled.string.txt │ │ ├── empty.amd.js │ │ ├── empty.amd.namespace.js │ │ ├── empty.amd.simple.js │ │ ├── empty.common.js │ │ ├── empty.name.amd.js │ │ ├── empty.root.amd.js │ │ ├── handlebar.path.amd.js │ │ ├── help.menu.txt │ │ ├── namespace.amd.js │ │ ├── non.default.extension.amd.js │ │ ├── non.empty.amd.known.helper.js │ │ ├── partial.template.js │ │ └── source.map.amd.js │ ├── helpers.js │ ├── index.html │ ├── javascript-compiler.js │ ├── partials.js │ ├── precompiler.js │ ├── regressions.js │ ├── require.js │ ├── runtime.js │ ├── security.js │ ├── source-map.js │ ├── spec.js │ ├── strict.js │ ├── subexpressions.js │ ├── tokenizer.js │ ├── umd-runtime.html │ ├── umd.html │ ├── utils.js │ ├── vendor/ │ │ └── require.js │ └── whitespace-control.js ├── tasks/ │ ├── publish-to-aws.js │ ├── tests/ │ │ ├── README.md │ │ ├── cli.test.js │ │ └── git.test.js │ ├── util/ │ │ ├── async-grunt-task.js │ │ ├── exec-file.js │ │ └── git.js │ └── version.js ├── tests/ │ ├── bench/ │ │ ├── compare.mjs │ │ ├── perf.mjs │ │ ├── report.mjs │ │ ├── size.mjs │ │ └── templates.mjs │ ├── browser/ │ │ ├── README.md │ │ ├── playwright.config.js │ │ └── tests/ │ │ └── lib.spec.js │ ├── integration/ │ │ ├── README.md │ │ ├── multi-nodejs-test/ │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ ├── precompile-test-template.txt.hbs │ │ │ ├── run-handlebars.js │ │ │ └── test.sh │ │ ├── rollup-test/ │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ ├── rollup.config.js │ │ │ ├── src/ │ │ │ │ └── index.js │ │ │ └── test.sh │ │ ├── run-integration-tests.sh │ │ ├── webpack-babel-test/ │ │ │ ├── .babelrc │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── handlebars-inline-precompile-test.js │ │ │ │ └── lib/ │ │ │ │ └── assert.js │ │ │ ├── test.sh │ │ │ └── webpack.config.js │ │ └── webpack-test/ │ │ ├── .gitignore │ │ ├── package.json │ │ ├── src/ │ │ │ ├── handlebars-default-import-test.js │ │ │ ├── handlebars-esm-import-test.js │ │ │ ├── handlebars-loader-test.js │ │ │ ├── handlebars-register-helper-test.js │ │ │ ├── handlebars-runtime-test.js │ │ │ ├── lib/ │ │ │ │ └── assert.js │ │ │ └── test-template.handlebars │ │ ├── test.sh │ │ └── webpack.config.js │ ├── print-script.js │ └── rspack/ │ └── rspack.test.js ├── tstyche.config.json ├── types/ │ ├── __typetests__/ │ │ └── handlebars.tst.ts │ ├── index.d.ts │ └── tsconfig.json └── vitest.config.js