An open API service indexing awesome lists of open source software.

https://github.com/vhidvz/naming-conventions-wasm

Simple and Fast naming convention library.
https://github.com/vhidvz/naming-conventions-wasm

wasm wasm-bindgen wasm-pack

Last synced: 3 months ago
JSON representation

Simple and Fast naming convention library.

Awesome Lists containing this project

README

          

# Naming Conventions - WebAssembly

[![npm](https://img.shields.io/npm/v/naming-conventions-wasm)](https://www.npmjs.com/package/naming-conventions-wasm)
![npm](https://img.shields.io/npm/dm/naming-conventions-wasm)
[![GitHub](https://img.shields.io/github/license/vhidvz/naming-conventions-wasm?style=flat)](https://github.com/vhidvz/naming-conventions-wasm/blob/main/LICENSE)

Simple and Super Fast naming convention library.

## Quick Start Guide

```ts
import { to_snake_case, is_snake_case } from "naming-conventions-wasm";

console.log("to snake_case:", to_snake_case("camelCase"));
console.log("is snake_case:", is_snake_case("camelCase"));
```

## License

[Apache License 2.0](https://github.com/vhidvz/naming-conventions-wasm/blob/main/LICENSE)