@bbn/bbn 2.0.126 → 2.0.127

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.
@@ -5,7 +5,6 @@ import bbnDtDate from '../classes/date.js';
5
5
  import bbnDtTime from '../classes/time.js';
6
6
  import bbnDtYearMonth from '../classes/yearMonth.js';
7
7
  import bbnDtMonthDay from '../classes/monthDay.js';
8
- import log from '../../fn/browser/log.js';
9
8
  const lc = function (str, localeCode) {
10
9
  try {
11
10
  return localeCode ? str.toLocaleLowerCase(localeCode) : str.toLowerCase();
@@ -527,7 +526,6 @@ export default function parse(input, format, cls = 'auto', force, locale) {
527
526
  if (matchedToken) {
528
527
  pattern += `(${matchedToken.regex})`;
529
528
  if (matchedToken.apply) {
530
- log(matchedToken);
531
529
  applyFns.push(value => matchedToken.apply(value, ctx));
532
530
  }
533
531
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "2.0.126",
3
+ "version": "2.0.127",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",