mirror of
https://github.com/swc-project/swc.git
synced 2024-12-03 00:54:25 +03:00
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
// @noEmit: true
|
|
// @allowJs: true
|
|
// @checkJs: true
|
|
// @Filename: Eloquent.js
|
|
// bug #27365, crashes from github.com/marijnh/Eloquent-JavaScript
|
|
(function() {
|
|
exports.bigOak = 1
|
|
exports.everywhere = 2
|
|
module.exports = exports
|
|
})()
|