@kizmann/pico-js 0.3.32 → 0.3.33

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/docs/cookie.html CHANGED
@@ -29,7 +29,8 @@
29
29
  'use strict';
30
30
 
31
31
  pi.Dom.ready(function() {
32
- console.log(pi.Str.real('[1,"foo",3]'));
32
+ console.log(pi.Str.real('@[\'\']'));
33
+ console.log(pi.Str.real('@[1,"foo",3]'));
33
34
  pi.Cookie.set('foobar1', { foo: 'bar', pi: { nano: 'ui', kyoto: 'cms' } });
34
35
  console.log(pi.Cookie.get('foobar1', {}, 'object'));
35
36
  pi.Cookie.set('foobar2', ['foo', 'bar', 1], 60 * 60);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kizmann/pico-js",
3
- "version": "0.3.32",
3
+ "version": "0.3.33",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Eduard Kizmann <kizmann@protonmail.ch>",
@@ -107,16 +107,16 @@ export class Str
107
107
  return size;
108
108
  }
109
109
 
110
- static array(value, fallback = null)
110
+ static array(value, fallback = [])
111
111
  {
112
- let matches = value.match(/((?<=(@\[|,))(.*?)(?=(,|\])))+/g);
112
+ value = value.replace(/^@\[(.*?)?\]$/, '$1');
113
113
 
114
- if ( ! Any.isArray(matches) ) {
114
+ if ( Any.isEmpty(value) ) {
115
115
  return fallback;
116
116
  }
117
117
 
118
- return Arr.each(matches, (value) => {
119
- return Str.real(value.replace(/(^"|^'|"$|'$)/g, ''));
118
+ return Arr.each(value.split(','), (val) => {
119
+ return Str.real(val.replace(/(^"|^'|"$|'$)/g, ''));
120
120
  });
121
121
  }
122
122