Skip to content

Instantly share code, notes, and snippets.

@ayeshLK
Created January 4, 2022 19:33
Show Gist options
  • Save ayeshLK/34caf6e7eded4f98c5cc7e657e5c2c3f to your computer and use it in GitHub Desktop.
Save ayeshLK/34caf6e7eded4f98c5cc7e657e5c2c3f to your computer and use it in GitHub Desktop.
function isString(any value) returns boolean {
// checks whether the provided value is not a `string`
if value !is string {
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment