Package Exports
- sql-escape
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (sql-escape) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
sql-escape

Escape SQL special characters and quotes in strings
Just publishing code taken from http://stackoverflow.com/a/7760578/700897 for use in JS projects. I take no credit for this code.
npm install sql-escape
Usage:
var escape = require('sql-escape');
var result = escape('my sweet "string"'); // my sweet \\"string\\"