Package Exports
- escape-string-applescript
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 (escape-string-applescript) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
escape-string-applescript 
Escape a string for use in AppleScript
According to the AppleScript docs, \ and " have special meaning and should be escaped.
Install
$ npm install --save escape-string-applescriptUsage
const {execFile} = require('child_process');
const escapeString = require('escape-string-applescript');
const str = escapeString('"i like unicorns"');
//=> '\"i like unicorns\"'
const script = `set unicornMessage to "${str}"`;
execFile('osascript', ['-e', script]);Related
- run-applescript - Run AppleScript and get the result
License
MIT © Sindre Sorhus