UNPKG

guido

Version:

基于webpack4的一键式开发工具,集成handlebars、雪碧图、SVG Sprite、自定义资源注入等方式

12 lines (8 loc) 227 B
'use strict'; const Typeof = require('../utils/typeof'); module.exports = function excludeDuplicatePaths(arr) { if (!Typeof.isArray(arr)) { throw new TypeError('Expected a Array'); } return Array.from(new Set(arr)); };