UNPKG

wms-xmlify-copy-resource

Version:

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

13 lines (9 loc) 233 B
var f = require('./factory') var reg = /^[A-Z]{4}$/ module.exports = function holdingLocation (h) { if (!h) return '' h = h.trim() if (h === '') return '' if (!reg.test(h)) return '' return f('holdingLocation', {}, h) }