mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-05 21:10:09 +02:00
10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
"use strict";
|
|
|
|
const HTMLElementImpl = require("./HTMLElement-impl").implementation;
|
|
|
|
class HTMLParamElementImpl extends HTMLElementImpl { }
|
|
|
|
module.exports = {
|
|
implementation: HTMLParamElementImpl
|
|
};
|