PLT-7518 Added unit tests for channel linking (#7352)

* PLT-7518 Added unit tests for channel linking

* Removed unused escaping function
Этот коммит содержится в:
Harrison Healey
2017-09-04 05:48:17 -04:00
коммит произвёл George Goldberg
родитель 8391ef6288
Коммит 670bfbf626
3 изменённых файлов: 65 добавлений и 7 удалений

Просмотреть файл

@@ -242,10 +242,6 @@ export function extractFirstLink(text) {
return '';
}
export function escapeRegExp(string) {
return string.replace(/([.*+?^=!:${}()|[\]/\\])/g, '\\$1');
}
// Taken from http://stackoverflow.com/questions/1068834/object-comparison-in-javascript and modified slightly
export function areObjectsEqual(x, y) {
let p;