mirror of
https://github.com/bcomnes/deploy-to-neocities.git
synced 2026-01-16 22:56:28 +00:00
11 lines
182 B
JavaScript
11 lines
182 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
// ESM syntax is supported.
|
|
const thing = { foo: 'bar' };
|
|
|
|
console.log(thing);
|
|
|
|
exports.thing = thing;
|