Skip to content

Commit 69ac425

Browse files
committed
Updated readme attribution and fixed eslint issues
1 parent 3917e50 commit 69ac425

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,12 @@ Note: This is not an exhaustive list of all libraries and projects that would be
140140
* [OneLogin's SAML PHP Toolkit](https://github.com/onelogin/php-saml) - _[MIT](https://github.com/onelogin/php-saml/blob/master/LICENSE)_
141141
* [League/CommonMark](https://commonmark.thephpleague.com/) - _[BSD-3-Clause](https://github.com/thephpleague/commonmark/blob/2.2/LICENSE)_
142142
* [League/Flysystem](https://flysystem.thephpleague.com) - _[MIT](https://github.com/thephpleague/flysystem/blob/3.x/LICENSE)_
143+
* [League/html-to-markdown](https://github.com/thephpleague/html-to-markdown) - _[MIT](https://github.com/thephpleague/html-to-markdown/blob/master/LICENSE)_
144+
* [League/oauth2-client](https://oauth2-client.thephpleague.com/) - _[MIT](https://github.com/thephpleague/oauth2-client/blob/master/LICENSE)_
143145
* [pragmarx/google2fa](https://github.com/antonioribeiro/google2fa) - _[MIT](https://github.com/antonioribeiro/google2fa/blob/8.x/LICENSE.md)_
144146
* [Bacon/BaconQrCode](https://github.com/Bacon/BaconQrCode) - _[BSD-2-Clause](https://github.com/Bacon/BaconQrCode/blob/master/LICENSE)_
145147
* [phpseclib](https://github.com/phpseclib/phpseclib) - _[MIT](https://github.com/phpseclib/phpseclib/blob/master/LICENSE)_
146148
* [Clockwork](https://github.com/itsgoingd/clockwork) - _[MIT](https://github.com/itsgoingd/clockwork/blob/master/LICENSE)_
147149
* [PHPStan](https://phpstan.org/) & [Larastan](https://github.com/nunomaduro/larastan) - _[MIT](https://github.com/phpstan/phpstan/blob/master/LICENSE) and [MIT](https://github.com/nunomaduro/larastan/blob/master/LICENSE.md)_
148150
* [PHP_CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) - _[BSD 3-Clause](https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt)_
151+
* [JakeArchibald/IDB-Keyval](https://github.com/jakearchibald/idb-keyval) - _[Apache-2.0](https://github.com/jakearchibald/idb-keyval/blob/main/LICENCE)_

resources/js/services/store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { get, set, del } from 'idb-keyval';
1+
export {get, set, del} from 'idb-keyval';

resources/js/services/util.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
* leading edge, instead of the trailing.
66
* @attribution https://davidwalsh.name/javascript-debounce-function
77
* @param {Function} func
8-
* @param {Number} wait
8+
* @param {Number} waitMs
99
* @param {Boolean} immediate
1010
* @returns {Function}
1111
*/
12-
export function debounce(func, wait, immediate) {
12+
export function debounce(func, waitMs, immediate) {
1313
let timeout;
1414
return function debouncedWrapper(...args) {
1515
const context = this;
@@ -19,7 +19,7 @@ export function debounce(func, wait, immediate) {
1919
};
2020
const callNow = immediate && !timeout;
2121
clearTimeout(timeout);
22-
timeout = setTimeout(later, wait);
22+
timeout = setTimeout(later, waitMs);
2323
if (callNow) func.apply(context, args);
2424
};
2525
}

0 commit comments

Comments
 (0)