shinkansen-cogs
Version:
25 lines (19 loc) • 462 B
JavaScript
require('@babel/register')({
ignore: [
/node_modules\/(?!shinkansen|@modernpoacher)/
]
})
const debug = require('debug')
const log = debug('shinkansen-cogs/components/field')
log('`shinkansen` is awake')
const {
ValueField,
CheckField,
toInputValue
} = require('./index.jsx')
/**
* Exports ValueField and CheckField
*/
module.exports.ValueField = ValueField
module.exports.CheckField = CheckField
module.exports.toInputValue = toInputValue