UNPKG

textile-js

Version:

A full-featured JavaScript Textile parser

10 lines (9 loc) 164 B
// merge object b properties into object a module.exports = function merge (a, b) { if (b) { for (const k in b) { a[k] = b[k]; } } return a; };