diff options
Diffstat (limited to 'integration/bunjs-only-snippets/bundled/to_bundle_node_modules/i-am-bundled/cjs.js')
-rw-r--r-- | integration/bunjs-only-snippets/bundled/to_bundle_node_modules/i-am-bundled/cjs.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/integration/bunjs-only-snippets/bundled/to_bundle_node_modules/i-am-bundled/cjs.js b/integration/bunjs-only-snippets/bundled/to_bundle_node_modules/i-am-bundled/cjs.js new file mode 100644 index 000000000..087697589 --- /dev/null +++ b/integration/bunjs-only-snippets/bundled/to_bundle_node_modules/i-am-bundled/cjs.js @@ -0,0 +1,10 @@ +module.exports = { + default: 0xdeadbeef, + default() { + return "ok"; + }, + default: true, + ok() { + return true; + }, +}; |