All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.inflected.src.classify.js Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
import camelize from "./camelize";
import singularize from "./singularize";

export default function classify(tableName) {
  return camelize(singularize(tableName.replace(/.*\./g, "")));
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy