diff options
author | 2022-01-21 21:03:06 -0800 | |
---|---|---|
committer | 2022-01-21 21:03:06 -0800 | |
commit | f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3 (patch) | |
tree | c2cae3c93d89a2b25d52248dc5ea3cad1e637b32 /integration/bunjs-only-snippets/bundled/to_bundle_node_modules/i-am-bundled/cjs.js | |
parent | 3e803b3a58e1d655e8a3e3c4a92fb0e40016dec8 (diff) | |
download | bun-f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3.tar.gz bun-f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3.tar.zst bun-f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3.zip |
more tests
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; + }, +}; |