string.js 97 B

1234
  1. module.exports = {
  2. append: (str, append) => str + append,
  3. toBool: val => val === 'true'
  4. }