From 705d6857ad262c0f1e8e85645a7a0df7b1e14d84 Mon Sep 17 00:00:00 2001 From: Marc Wrobel Date: Mon, 18 Jul 2022 10:02:41 +0200 Subject: Fix typos in code (#36763) Shoutout is correct but has been replaced by its more common form : Shout-out (https://www.merriam-webster.com/dictionary/shout-out). --- js/src/util/index.js | 2 +- js/src/util/sanitizer.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'js/src') diff --git a/js/src/util/index.js b/js/src/util/index.js index 161501e39..b02789df5 100644 --- a/js/src/util/index.js +++ b/js/src/util/index.js @@ -9,7 +9,7 @@ const MAX_UID = 1_000_000 const MILLISECONDS_MULTIPLIER = 1000 const TRANSITION_END = 'transitionend' -// Shoutout AngusCroll (https://goo.gl/pxwQGp) +// Shout-out Angus Croll (https://goo.gl/pxwQGp) const toType = object => { if (object === null || object === undefined) { return `${object}` diff --git a/js/src/util/sanitizer.js b/js/src/util/sanitizer.js index 06402d296..0584df932 100644 --- a/js/src/util/sanitizer.js +++ b/js/src/util/sanitizer.js @@ -21,14 +21,14 @@ const ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i /** * A pattern that recognizes a commonly useful subset of URLs that are safe. * - * Shoutout to Angular https://github.com/angular/angular/blob/12.2.x/packages/core/src/sanitization/url_sanitizer.ts + * Shout-out to Angular https://github.com/angular/angular/blob/12.2.x/packages/core/src/sanitization/url_sanitizer.ts */ const SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i /** * A pattern that matches safe data URLs. Only matches image, video and audio types. * - * Shoutout to Angular https://github.com/angular/angular/blob/12.2.x/packages/core/src/sanitization/url_sanitizer.ts + * Shout-out to Angular https://github.com/angular/angular/blob/12.2.x/packages/core/src/sanitization/url_sanitizer.ts */ const DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i -- cgit v1.2.3