Skip to content

Commit

Permalink
[closes #17] Add a count function that stores its result in a Map
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed Oct 17, 2022
1 parent 801ddc9 commit f7f8a45
Show file tree
Hide file tree
Showing 7 changed files with 16,728 additions and 3,292 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: checks

on: [push, pull_request]
on:
push:
branches: [ master ]

pull_request:

jobs:
coverage:
Expand Down Expand Up @@ -30,7 +34,7 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x, 18.x]

name: Node ${{ matrix.node-version }}

Expand Down
7 changes: 7 additions & 0 deletions jsdoc.typedefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions|Functions} in Mozilla documentation.
*/

/**
* The built-in Map object.
* @typedef {Map} Map
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map|Map} in Mozilla documentation.
*/

/**
* The built-in Number object.
* @typedef {Number} Number
Expand Down

0 comments on commit f7f8a45

Please sign in to comment.