@litejs/dom 25.6.0 → 25.9.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.
Files changed (2) hide show
  1. package/dom.js +1 -1
  2. package/package.json +2 -2
package/dom.js CHANGED
@@ -259,7 +259,7 @@ function addGetter(key, opts) {
259
259
  })
260
260
  }
261
261
 
262
- ;["hasAttribute", "getAttribute", "setAttribute", "removeAttribute"].forEach(function(name) {
262
+ ;["hasAttribute", "getAttribute", "setAttribute", "removeAttribute"].forEach(name => {
263
263
  Element[name + "NS"] = function(ns, a, b) {
264
264
  return this[name].call(this, a, b)
265
265
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@litejs/dom",
3
- "version": "25.6.0",
3
+ "version": "25.9.1",
4
4
  "description": "A small DOM library for server-side testing, rendering, and handling of HTML files",
5
5
  "license": "MIT",
6
6
  "author": "Lauri Rooden <lauri@rooden.ee>",
@@ -22,7 +22,7 @@
22
22
  "scripts": {
23
23
  "test": "lj t"
24
24
  },
25
- "repository": "github:litejs/dom",
25
+ "repository": "https://github.com/litejs/dom.git",
26
26
  "devDependencies": {
27
27
  "@litejs/cli": "25.1.0"
28
28
  }