How to use the es5-ext/string/#/hyphen-to-camel.call function in es5-ext

To help you get started, we’ve selected a few es5-ext examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github medikoo / deferred / test / index.js View on Github external
.map(function (file) {
					if (file.slice(-3) === ".js" && file[0] !== "_") {
						return convert.call(file.slice(0, -3));
					}
					return null;
				})
				.filter(Boolean)
github medikoo / serverless-plugin-dynamodb-autoscaling / lib / generate-resources / dimension.js View on Github external
const resolveIndexToken = indexName =>
	indexName ? capitalize.call(hyphenToCamel.call(indexName).replace(/[^a-zA-Z0-9]/g, "")) : "";
github medikoo / serverless-plugin-dynamodb-autoscaling / index.js View on Github external
const resolveIndexToken = indexName =>
	indexName ? capitalize.call(hyphenToCamel.call(indexName).replace(/[^a-zA-Z0-9]/gu, "")) : "";