thng-query
Version:
DSL for querying EVRYTHNG API
14 lines (11 loc) • 354 B
JavaScript
;
const examples = [
'thngs with name Advanced* where identifiers.ser^673',
'products tagged WIFI where properties.sw_update = true',
'1 thng where identifiers.production_id $ c62',
'10 products with tag Emulator'
];
module.exports = () => rand(examples);
function rand(arr) {
return arr[Math.floor(Math.random() * arr.length)]
}