Files
old-cto-as-you-go/CTOAsYouGo/node_modules/postcss-js/index.js

12 lines
224 B
JavaScript
Raw Normal View History

2023-07-05 11:02:15 +02:00
var objectify = require('./objectifier')
var parse = require('./parser')
var async = require('./async')
var sync = require('./sync')
2023-07-01 10:42:40 +02:00
module.exports = {
2023-07-05 11:02:15 +02:00
objectify: objectify,
parse: parse,
async: async,
sync: sync
2023-07-01 10:42:40 +02:00
}