From b912dc8df2c8a69968d005255e161c47ade27c19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20K=C3=A1rolyi?= Date: Tue, 30 Jul 2024 22:53:26 +0200 Subject: [PATCH] Remove unused lodash.get() --- lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/index.js b/lib/index.js index ea10bca..37efa6d 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,7 +1,6 @@ // @ts-check /** @typedef {import("lodash.defaults")} defaults */ /** @typedef {import("lodash.assign")} assign */ -/** @typedef {import("lodash.get")} get */ /** @typedef {import("webpack").Compiler} Compiler4 */ /** @typedef {Compiler4['hooks']['assetEmitted']} assetEmitted4 */ /** @typedef {import("webpack").Stats} Stats4 */ @@ -23,7 +22,6 @@ const fs = require('fs') const crypto = require('crypto') const assign = require('lodash.assign') -const get = require('lodash.get') const each = require('lodash.foreach') const fromPairs = require('lodash.frompairs') const toPairs = require('lodash.topairs')