untitled notebook

node v14.20.1
version: 1.0.0
endpointsharetweet
const _ = require('lodash') tags = { a: 1, b: null, c: undefined, d: '1' } _.reduce(tags, (acc, v, k) => { if (v) { acc.push(`${k}='${v}'`) } return acc }, []).join('\n')
Loading…

no comments

    sign in to comment