UNPKG

okam-build

Version:

The build tool for Okam develop framework

15 lines (11 loc) 290 B
/** * @file Transform ant tpl syntax * @author sparklewhy@gmail.com */ 'use strict'; const transformTpl = require('../base/tpl'); module.exports = function (element, tplOpts, opts) { transformTpl(element, tplOpts, Object.assign({ transformDataAttr: true }, opts)); };