pacc 6.7.0 → 6.7.1

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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (C) 2023-2025 by arlac77
1
+ Copyright (C) 2023-2026 by arlac77
2
2
 
3
3
  Permission to use, copy, modify, and/or distribute this software for any
4
4
  purpose with or without fee is hereby granted.
package/README.md CHANGED
@@ -81,6 +81,7 @@ const result = getAttribute({ a: [0,{ b: 4 }]}, "a[1].b");
81
81
  * [title\_attribute\_writable](#title_attribute_writable)
82
82
  * [priority\_attribute](#priority_attribute)
83
83
  * [duration\_attribute](#duration_attribute)
84
+ * [duration\_attribute\_writable](#duration_attribute_writable)
84
85
  * [duration\_ms\_attribute](#duration_ms_attribute)
85
86
  * [timeout\_attribute](#timeout_attribute)
86
87
  * [language\_attribute](#language_attribute)
@@ -412,6 +413,10 @@ Type: [AttributeDefinition](#attributedefinition)
412
413
 
413
414
  Type: [AttributeDefinition](#attributedefinition)
414
415
 
416
+ ## duration\_attribute\_writable
417
+
418
+ Type: [AttributeDefinition](#attributedefinition)
419
+
415
420
  ## duration\_ms\_attribute
416
421
 
417
422
  Type: [AttributeDefinition](#attributedefinition)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pacc",
3
- "version": "6.7.0",
3
+ "version": "6.7.1",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
package/src/tokens.mjs CHANGED
@@ -106,6 +106,8 @@ export function* tokens(string) {
106
106
  }
107
107
 
108
108
  switch (c) {
109
+ case '\n':
110
+ case '\r':
109
111
  case "\t":
110
112
  case " ":
111
113
  switch (state) {