dphelper 0.2.38 → 0.2.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/.github/FUNDING.yml +12 -0
  2. package/.github/dependabot.yml +12 -0
  3. package/index.js +2 -12
  4. package/index.js.LICENSE.txt +24 -0
  5. package/package.json +3 -5
  6. package/.editorconfig +0 -14
  7. package/.eslintrc.json +0 -36
  8. package/.gitattributes +0 -2
  9. package/.jshintrc +0 -13
  10. package/.prettierignore +0 -2
  11. package/.prettierrc +0 -7
  12. package/.vscode/settings.json +0 -19
  13. package/3party/shortcut.js +0 -224
  14. package/data/list.json +0 -19
  15. package/index.d.ts +0 -9
  16. package/init.js +0 -136
  17. package/scripts/anchorToOnClick.js +0 -47
  18. package/scripts/array.js +0 -95
  19. package/scripts/browser.js +0 -69
  20. package/scripts/console.js +0 -86
  21. package/scripts/cookie.js +0 -97
  22. package/scripts/currency.js +0 -41
  23. package/scripts/date.js +0 -101
  24. package/scripts/disable.js +0 -90
  25. package/scripts/event.js +0 -39
  26. package/scripts/font.js +0 -52
  27. package/scripts/form.js +0 -113
  28. package/scripts/function.js +0 -47
  29. package/scripts/indexedDB.js +0 -222
  30. package/scripts/json.js +0 -42
  31. package/scripts/load.js +0 -70
  32. package/scripts/noCache.js +0 -26
  33. package/scripts/number.js +0 -66
  34. package/scripts/obj.js +0 -81
  35. package/scripts/onBeforeUnLoad.js +0 -120
  36. package/scripts/parseBool.js +0 -27
  37. package/scripts/path.js +0 -94
  38. package/scripts/promise.js +0 -35
  39. package/scripts/purge.js +0 -53
  40. package/scripts/screen.js +0 -64
  41. package/scripts/scrollbar.js +0 -226
  42. package/scripts/shortcut.js +0 -70
  43. package/scripts/storage.js +0 -62
  44. package/scripts/svg.js +0 -372
  45. package/scripts/text.js +0 -78
  46. package/scripts/time.js +0 -41
  47. package/scripts/timer.js +0 -35
  48. package/scripts/trigger.js +0 -46
  49. package/scripts/type.js +0 -56
  50. package/scripts/uuid.js +0 -33
  51. package/scripts/window.js +0 -50
  52. package/ws.code-workspace +0 -73
package/scripts/window.js DELETED
@@ -1,50 +0,0 @@
1
- /*!
2
- * dpHelper <https://github.com/passariello/dpHelper>
3
- * Copyright (c) 2021, Dario Passariello.
4
- * Licensed under the Apache-2.0 License.
5
- */
6
-
7
- /***********************************************************************/
8
-
9
- var description = {
10
- "name" : "Window Options",
11
- "description" : "test",
12
- "version" : "0.0.1",
13
- "command" : "window",
14
- "subCommand" : [],
15
- "example" : "",
16
- "author" : "Dario Passariello",
17
- "active" : true
18
- };
19
-
20
- window.dphelper._list.scripts.push( description );
21
-
22
- /***********************************************************************/
23
-
24
- window.dphelper.window = () => {
25
-
26
- window.offScreenBuffering = "auto";
27
-
28
- // HIDE STATUS INFORMATION ON BROWSER BAR
29
- //***************************************
30
-
31
- window.status = "";
32
- window.defaultStatus = "";
33
-
34
- // WINDOW ANIMATION
35
- //**********************************
36
-
37
- ( () => {
38
- return (
39
- window.requestAnimationFrame ||
40
- window.webkitRequestAnimationFrame ||
41
- window.mozRequestAnimationFrame ||
42
- window.oRequestAnimationFrame ||
43
- window.msRequestAnimationFrame ||
44
- function( callback ){
45
- window.setTimeout( callback, 1000 / 120 );
46
- }
47
- );
48
- })();
49
-
50
- };
package/ws.code-workspace DELETED
@@ -1,73 +0,0 @@
1
- {
2
- "folders": [
3
- { "path": "../dpHelper" }
4
- ],
5
- "settings": {
6
-
7
- "editor.hover.enabled": true,
8
- "editor.hover.delay": 1000,
9
- "editor.quickSuggestions": true,
10
- "editor.quickSuggestionsDelay": 1000,
11
-
12
- "editor.tabCompletion": "off",
13
- "editor.renderWhitespace": "all",
14
- "editor.acceptSuggestionOnEnter": "on",
15
- "editor.defaultFormatter": null,
16
- "editor.formatOnSave": false,
17
- "editor.autoClosingBrackets": "always",
18
- "editor.autoClosingOvertype": "always",
19
- "editor.tabSize": 2,
20
- "editor.codeActionsOnSave": { "source.organizeImports": false },
21
-
22
- "files.trimTrailingWhitespace": true,
23
- "typescript.format.semicolons": "remove",
24
- "javascript.format.semicolons" : "remove",
25
-
26
- "[typescript]": {},
27
- "[markdown]": {},
28
- "[php]": {},
29
- "[css]": {},
30
- "[less]": {},
31
- "[js]": {},
32
-
33
- "files.exclude": {
34
- "**/.DS_Store": true,
35
- "**/node_modules": true,
36
- "**/.git": true,
37
- "**/.svg": true,
38
- "**/.xml": true,
39
- "**/node_*": true,
40
- "**/bower_components": true,
41
- "**/.cache": true,
42
- "**/tmp": true,
43
- "*.lnk": true,
44
- "node_modules": true,
45
- ".editorconfig": true,
46
- ".prettierrc": true,
47
- ".prettierignore": true,
48
- "package-lock.json": true,
49
- ".babelrc": true,
50
- "babel.config.js": true,
51
- "jest.config.js": true
52
- },
53
-
54
- "search.exclude": {
55
- ".editorconfig": true,
56
- "**/.cache": true,
57
- "**/.DS_Store": true,
58
- "**/.git": true,
59
- "**/.svg": true,
60
- "**/.xml": true,
61
- "**/bower_components": true,
62
- "**/node_*": true,
63
- "**/node_modules": true,
64
- "**/tmp": true,
65
- "babel.config.js": true,
66
- "jest.config.js": true,
67
- "node_modules": true,
68
- "package-lock.json": true
69
- }
70
-
71
- }
72
-
73
- }