string.js 111 B

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