dream-common 1.1.15 → 1.1.16

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 (2) hide show
  1. package/lib/storage.js +0 -2
  2. package/package.json +1 -1
package/lib/storage.js CHANGED
@@ -1,5 +1,4 @@
1
1
  import {aesEncrypt, aesDecrypt} from './CryptoJS/AesUtils'
2
- import {uuid} from './uuid'
3
2
  let key = "86*a^vCVCw2lEAa4"
4
3
  /**
5
4
  * localStorage 存贮
@@ -71,7 +70,6 @@ function getObj(bool = true, value = null) {
71
70
  if (value === null || value === undefined || value.length <= 0) {
72
71
  return false
73
72
  }
74
- let key = "frzToVa9B1T61brfxXkriolta5PMyrLp";
75
73
  if (bool) {
76
74
  return aesEncrypt(key,JSON.stringify(value))
77
75
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dream-common",
3
- "version": "1.1.15",
3
+ "version": "1.1.16",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {