Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit 9261dcd

Browse files
authored
Add JSDoc to source file (#130)
1 parent 4a17935 commit 9261dcd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/cashcash.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ class Cash {
2323
}
2424
}
2525

26+
/**
27+
* @param {string} selector Any valid CSS selector.
28+
* @param {string|HTMLElement} context Optional search context.
29+
*
30+
* @returns {Cash} An instance of the Cash class
31+
*/
2632
export default function CashCash(selector, context) {
2733
return new Cash(selector, context);
2834
}

0 commit comments

Comments
 (0)