Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2023-07-13 09:09:17 +00:00
parent 4fad06f438
commit 40a500c743
4168 changed files with 298222 additions and 374905 deletions

34
node_modules/run-applescript/readme.md generated vendored Normal file
View file

@ -0,0 +1,34 @@
# run-applescript
> Run AppleScript and get the result
## Install
```
$ npm install run-applescript
```
## Usage
```js
import {runAppleScriptAsync} from 'run-applescript';
const result = await runAppleScriptAsync('return "unicorn"');
console.log(result);
//=> 'unicorn'
```
## API
### runAppleScriptAsync(script)
Returns a `Promise<string>` with the script result.
### runAppleScriptSync(script)
Returns a `string` with the script result.
## Related
- [run-jxa](https://github.com/sindresorhus/run-jxa) - Run JXA code and get the result