mirror of https://github.com/iconify/api.git
Remove unused function
This commit is contained in:
parent
1bfa11bb7f
commit
15e0f9cc7f
|
|
@ -135,23 +135,6 @@ class Collections {
|
|||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Merge two collections lists, overwriting this collections with data from other collections list
|
||||
*
|
||||
* @param {Collections} data
|
||||
*/
|
||||
merge(data) {
|
||||
// Merge data
|
||||
if (data.info !== void 0) {
|
||||
this.info = data.info;
|
||||
}
|
||||
|
||||
// Merge collections
|
||||
Object.keys(data.items).forEach(prefix => {
|
||||
this.items[prefix] = data.items[prefix];
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Load queue
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue