import { toCamelCase } from 'funtool/string'
toCamelCase('hello_world'); // ✅ 'helloWorld'
toCamelCase('hello-world'); // ✅ 'helloWorld'
toCamelCase('api_version'); // ✅ 'apiVersion'
toCamelCase('API_version'); // ✅ 'apiVersion'
toCamelCase('my-xml-parser'); // ✅ 'myXmlParser'