added string difference util function

This commit is contained in:
David Leimroth 2022-02-10 14:40:23 +01:00
parent 4b93882494
commit b12a38d12b

1
server/utils/string.js Normal file
View File

@ -0,0 +1 @@
module.exports.difference = (a, b) => a.split(b).join("");