6a5e5613fd6df4534b0716151039bb7b9b379c0121862dcb5f2697d3e7c63e02a179a76a244a3d6d921cfa99924fc9316bea99d31b793dc7752c447a28944f 412 B

123456789101112131415161718192021222324252627282930313233
  1. # unquote
  2. Remove wrapping quotes from a string. Returns an empty string if the first arg is falsey.
  3. ## Installation
  4. ```
  5. npm install unquote
  6. ```
  7. ## Usage
  8. Example
  9. ```js
  10. var unquote = require('unquote')
  11. unquote('"hello, world"') // 'hello, world'
  12. unquote('\'hello, world\'') // 'hello, world'
  13. ```
  14. ## Running Tests
  15. ```
  16. npm test
  17. ```
  18. ## License
  19. ([The MIT License](LICENSE))
  20. Copyright 2017 Cameron Lakenen