blob: be80d7cc90117889408989b488d60eafabe71e17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Generated by CoffeeScript 1.9.1
(function() {
var XMLBuilder, assign;
assign = require('lodash/assign');
XMLBuilder = require('./XMLBuilder');
module.exports.create = function(name, xmldec, doctype, options) {
options = assign({}, xmldec, doctype, options);
return new XMLBuilder(name, options).root();
};
}).call(this);
|