Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

49
static/js/ketcher2/node_modules/accessory/readme.md generated vendored Normal file
View File

@ -0,0 +1,49 @@
# accessory [![Build Status](https://travis-ci.org/bendrucker/accessory.svg?branch=master)](https://travis-ci.org/bendrucker/accessory)
> Create property accessor/caller statements for dot paths
## Install
```
$ npm install --save accessory
```
## Usage
```js
var accessory = require('accessory')
accessory('window', 'foo.bar')
//=> window['foo']['bar']
accessory('window', 'foo\\.bar')
//=> window['foo.bar']
accessory('window', 'foo.bar(baz)')
//=> window['foo']['bar'](baz)
```
## API
#### `accessory(source, path)` -> `string`
##### source
*Required*
Type: `string`
The source identifier which will prepend the accessors.
##### path
*Required*
Type: `string`
A dot property path, including function calls.
## License
MIT © [Ben Drucker](http://bendrucker.me)