Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit 6601ca2

Browse files
committed
fix: Force update version and coverage
1 parent 7debc89 commit 6601ca2

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/dataset.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export default function dataset(prop, mappingFn) {
1212
return this.dataset[prop];
1313
}
1414

15+
/* istanbul ignore next */
1516
return this.getAttribute(toDashed(prop));
1617
},
1718
setValue(value) {
@@ -20,6 +21,7 @@ export default function dataset(prop, mappingFn) {
2021
if (this.dataset) {
2122
this.dataset[prop] = val;
2223
} else {
24+
/* istanbul ignore next */
2325
this.setAttribute(toDashed(prop), val);
2426
}
2527
}

0 commit comments

Comments
 (0)