19 lines
727 B
JavaScript
19 lines
727 B
JavaScript
// parses a feature string that has the format used in window.open()
|
|
// - `str` input string
|
|
// - `emit` function(key, value) - called for each parsed KV
|
|
module.exports = function parseFeaturesString (features, emit) {
|
|
// split the string by ','
|
|
features.split(/,\s*/).forEach((feature) => {
|
|
// expected form is either a key by itself (true boolean flag)
|
|
// or a key/value, in the form of 'key=value'
|
|
// split the tokens by '='
|
|
let [key, value] = feature.split(/\s*=/)
|
|
if (!key) return
|
|
|
|
// interpret the value as a boolean, if possible
|
|
value = (value === 'yes' || value === '1') ? true : (value === 'no' || value === '0') ? false : value
|
|
|
|
// emit the parsed pair
|
|
emit(key, value)
|
|
})
|
|
}
|