string.js 176 B

12345678910111213
  1. 'use strict'
  2. module.exports = {
  3. append: test => {
  4. test.ok(true)
  5. test.done()
  6. },
  7. toBool: test => {
  8. test.ok(true)
  9. test.done()
  10. }
  11. }