UNPKG

inflected

Version:

A port of ActiveSupport's inflector to Node.js

7 lines (5 loc) 189 B
import camelize from "./camelize"; import singularize from "./singularize"; export default function classify(tableName) { return camelize(singularize(tableName.replace(/.*\./g, ""))); }