Skip to content

Commit

Permalink
added version()
Browse files Browse the repository at this point in the history
  • Loading branch information
bohnacker committed Mar 14, 2022
1 parent f6fef63 commit bc39b0e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ We will refer to the column titles (e.g. `Name`, `Height`, `Weight`) as properti
- [`isString(value)`](docs/isString.md) -> `boolean`
- [`isArray(value)`](docs/isArray.md) -> `boolean`
- [`isObject(value)`](docs/isObject.md) -> `boolean`
- [`version()`](docs/version.md) -> `string`

---------------------------------

Expand Down
4 changes: 4 additions & 0 deletions dist/gmynd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ window.gmynd = (function () {

return {

version: function () {
return "1.0.0";
},

// JSON / Object manipulation related:
// ===================================

Expand Down
5 changes: 5 additions & 0 deletions docs/version.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[Back to reference](../README.md)

### `version()`
Return the version of the gmynd library as a string, e.g. "1.0.0".

0 comments on commit bc39b0e

Please sign in to comment.