Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rbxts/utf8-validate",
"version": "1.0.1",
"version": "2.0.0",
"description": "UTF8 validator",
"main": "src/init.luau",
"types": "src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion pesde.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "ophidiedev/utf8_validate"
version = "1.0.1"
version = "2.0.0"
authors = ["Ophidie (https://github.com/OphidieDev)"]
description = "UTF8 validator"
repository = "https://github.com/OphidieDev/utf8-validate"
Expand Down
4 changes: 3 additions & 1 deletion src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@
* @param input The string to validate
* @returns {boolean} Whether or not the string is valid utf8
*/
export function utf8_validate(input: string): boolean;
declare function utf8_validate(input: string): boolean;

export = utf8_validate
2 changes: 1 addition & 1 deletion wally.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "ophidiedev/utf8-validate"
description = "UTF8 Validator"
authors = ["Ophidie <>"]
version = "1.0.1"
version = "2.0.0"
license = "MIT"
registry = "https://github.com/UpliftGames/wally-index"
realm = "shared"
Expand Down