mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 12:11:52 +02:00
8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
|
'use strict'
|
||
|
|
||
|
if (process.env.NODE_ENV === 'production') {
|
||
|
module.exports = require('./headlessui.prod.cjs')
|
||
|
} else {
|
||
|
module.exports = require('./headlessui.dev.cjs')
|
||
|
}
|