dphelper 3.0.2 → 3.0.3
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.
- package/README.md +5 -3
- package/dphelper.umd.js +19 -19
- package/index.js +19 -19
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -97,10 +97,12 @@ import "dphelper";
|
|
|
97
97
|
For plain HTML/CDN:
|
|
98
98
|
|
|
99
99
|
```html
|
|
100
|
-
<script src="https://unpkg.com/dphelper
|
|
100
|
+
<script src="https://unpkg.com/dphelper/dphelper.umd.js"></script>
|
|
101
|
+
|
|
102
|
+
<!-- Optional check -->
|
|
101
103
|
<script>
|
|
102
|
-
console.
|
|
103
|
-
console.
|
|
104
|
+
console.debug(dphelper.version); // latest version
|
|
105
|
+
console.debud(dphelper.isBrowser); // true
|
|
104
106
|
</script>
|
|
105
107
|
```
|
|
106
108
|
|