Skip to content

Commit 83ea0da

Browse files
committed
chore: coverage
1 parent 81e1e47 commit 83ea0da

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Diff for: src/platforms/web/runtime/node-ops.js

-4
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ export function setTextContent (node: Node, text: string) {
5454
node.textContent = text
5555
}
5656

57-
export function setAttribute (node: Element, key: string, val: string) {
58-
node.setAttribute(key, val)
59-
}
60-
6157
export function setStyleScope (node: Element, scopeId: string) {
6258
node.setAttribute(scopeId, '')
6359
}

Diff for: src/shared/util.js

+2
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,8 @@ export const hyphenate = cached((str: string): string => {
180180
* code that was able to run in PhantomJS 1.x, so this must be kept for
181181
* backwards compatibility.
182182
*/
183+
184+
/* istanbul ignore next */
183185
function polyfillBind (fn: Function, ctx: Object): Function {
184186
function boundFn (a) {
185187
const l = arguments.length

0 commit comments

Comments
 (0)