UNPKG

wms-xmlify-copy-resource

Version:

Convert a JSON-encoded WMS Copy Resource object into its XML equivalent

17 lines (13 loc) 266 B
var f = require('./factory') var types = [ 'SINGLE_PART', 'MULTI_PART', 'SERIAL', 'UNKNOWN', ] module.exports = function recordType (t) { if (!t) return '' t = t.toUpperCase() if (types.indexOf(t) === -1) return '' return f('recordType', {}, t) }