Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Aug 6, 2023
1 parent 33373c1 commit 99ba5ae
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
8 changes: 0 additions & 8 deletions src/element.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,10 @@
import extend from 'lodash-es/extend.js';
import isElement from 'lodash-es/isElement.js';
import isFunction from 'lodash-es/isFunction.js';
import pick from 'lodash-es/pick.js';
import result from 'lodash-es/result.js';
import uniqueId from 'lodash-es/uniqueId.js';
import { Events } from './events.js';
import { inherits, NotImplementedError } from './helpers.js';
import { render } from 'lit-html';

const paddedLt = /^\s*</;

// Caches a local reference to `Element.prototype` for faster access.
const ElementProto = (typeof Element !== 'undefined' && Element.prototype) || {};

// Cached regex to split keys for `delegate`.
const delegateEventSplitter = /^(\S+)\s*(.*)$/;

Expand Down
1 change: 0 additions & 1 deletion src/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,6 @@ class Model extends EventEmitter {
* @param {Options} resp
* @param {Options} [options]
*/
// eslint-disable-next-line class-methods-use-this
parse(resp, options) {
return resp;
}
Expand Down

0 comments on commit 99ba5ae

Please sign in to comment.