UNPKG

overscroll

Version:
7 lines (4 loc) 142 B
const camelCaseRE = /-(\w)/g; export default function camelCase( str ) { return str.replace( camelCaseRE, ( _, b ) => b.toUpperCase()); }