UNPKG

steal-tools

Version:

Futuristic build tools for ES6 Module applications.

9 lines (8 loc) 242 B
/** * Whether the bundle contains only JavaScript nodes * @param {Object} bundle - The bundle * @return {boolean} */ module.exports = function isJavaScriptBundle(bundle) { return bundle.buildType == null || bundle.buildType === "js"; };