Delimiter Tool for Editor.js
npm install @editorjs/delimiter
Delimiter Tool for the Editor.js.

Get the package
``shell`
yarn add @editorjs/delimiter
Include module at your application
`javascript`
import Delimiter from '@editorjs/delimiter';
Optionally, you can load this tool from CDN JsDelivr CDN
Add a new Tool to the tools property of the Editor.js initial config.
`javascript
var editor = EditorJS({
...
tools: {
...
delimiter: Delimiter,
}
...
});
`
This Tool has no config params
This Tool returns empty object.
`json``
{
"type" : "delimiter",
"data" : {}
}