Skip to content

Commit

Permalink
Release. Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
bryaningl3 committed Feb 11, 2022
1 parent 124e85f commit 8465707
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@barchart/common-js",
"version": "4.19.0",
"version": "4.19.1",
"description": "Library of common JavaScript utilities",
"author": {
"name": "Bryan Ingle",
Expand Down
10 changes: 5 additions & 5 deletions test/SpecRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -5185,8 +5185,8 @@ module.exports = (() => {
*
* @static
* @param {*} variable - The value to check.
* @param {String} variableName - The name of the value (used for formatting an error message).
* @param {*} type - The expected type of the argument.
* @param {String=} variableName - The name of the value (used for formatting an error message).
* @param {*=} type - The expected type of the argument.
* @param {String=} typeDescription - The description of the expected type (used for formatting an error message).
*/
argumentIsRequired(variable, variableName, type, typeDescription) {
Expand All @@ -5199,8 +5199,8 @@ module.exports = (() => {
*
* @static
* @param {*} variable - The value to check.
* @param {String} variableName - The name of the value (used for formatting an error message).
* @param {*} type - The expected type of the argument.
* @param {String=} variableName - The name of the value (used for formatting an error message).
* @param {*=} type - The expected type of the argument.
* @param {String=} typeDescription - The description of the expected type (used for formatting an error message).
*/
argumentIsOptional(variable, variableName, type, typeDescription, predicate, predicateDescription) {
Expand Down Expand Up @@ -5239,7 +5239,7 @@ module.exports = (() => {
*
* @static
* @param {*} variable - The value to check.
* @param {String} variableName - The name of the value (used for formatting an error message).
* @param {String=} variableName - The name of the value (used for formatting an error message).
* @param {Function=} predicate - A function used to validate the item (beyond type checking).
* @param {String=} predicateDescription - A description of the assertion made by the predicate (e.g. "is an integer") that is used for formatting an error message.
*/
Expand Down

0 comments on commit 8465707

Please sign in to comment.