Skip to content

Instantly share code, notes, and snippets.

@nicu-chiciuc
Last active October 20, 2019 12:48
Show Gist options
  • Save nicu-chiciuc/fd3b7545f60cdda6a538ef3250532414 to your computer and use it in GitHub Desktop.
Save nicu-chiciuc/fd3b7545f60cdda6a538ef3250532414 to your computer and use it in GitHub Desktop.
const getStringLength = new ValidatedMethod({
name: "global.getStringLength",
validate: null,
run(str: string) {
return Promise.resolve(str.length);
}
});
export { getStringLength };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment