Package Exports
- editorjs-change-case
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 (editorjs-change-case) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Change Case Inline Tool
Change Case Tool for the Editor.js.

Installation
Install via NPM
Get the package
npm i --save-dev editorjs-change-caseOR
yarn add editorjs-change-caseInclude module at your application
import ChangeCase from 'editorjs-change-case';Usage
Add a new Tool to the tools property of the Editor.js initial config.
The locale parameter used to convert according to locale-specific case mappings.
var editor = EditorJS({
tools: {
changeCase: {
class: ChangeCase,
config: {
showLocaleOption: true, // enable locale case options
locale: 'tr' // or ['tr', 'TR', 'tr-TR']
}
}
}
});