File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const MAX_UID = 1_000_000
9
9
const MILLISECONDS_MULTIPLIER = 1000
10
10
const TRANSITION_END = 'transitionend'
11
11
12
- // Shoutout AngusCroll (https://goo.gl/pxwQGp)
12
+ // Shout-out Angus Croll (https://goo.gl/pxwQGp)
13
13
const toType = object => {
14
14
if ( object === null || object === undefined ) {
15
15
return `${ object } `
Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ const ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i
21
21
/**
22
22
* A pattern that recognizes a commonly useful subset of URLs that are safe.
23
23
*
24
- * Shoutout to Angular https://github.com/angular/angular/blob/12.2.x/packages/core/src/sanitization/url_sanitizer.ts
24
+ * Shout-out to Angular https://github.com/angular/angular/blob/12.2.x/packages/core/src/sanitization/url_sanitizer.ts
25
25
*/
26
26
const SAFE_URL_PATTERN = / ^ (?: (?: h t t p s ? | m a i l t o | f t p | t e l | f i l e | s m s ) : | [ ^ # & / : ? ] * (?: [ # / ? ] | $ ) ) / i
27
27
28
28
/**
29
29
* A pattern that matches safe data URLs. Only matches image, video and audio types.
30
30
*
31
- * Shoutout to Angular https://github.com/angular/angular/blob/12.2.x/packages/core/src/sanitization/url_sanitizer.ts
31
+ * Shout-out to Angular https://github.com/angular/angular/blob/12.2.x/packages/core/src/sanitization/url_sanitizer.ts
32
32
*/
33
33
const DATA_URL_PATTERN = / ^ d a t a : (?: i m a g e \/ (?: b m p | g i f | j p e g | j p g | p n g | t i f f | w e b p ) | v i d e o \/ (?: m p e g | m p 4 | o g g | w e b m ) | a u d i o \/ (?: m p 3 | o g a | o g g | o p u s ) ) ; b a s e 6 4 , [ \d + / a - z ] + = * $ / i
34
34
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ describe('SelectorEngine', () => {
21
21
expect ( SelectorEngine . find ( 'div' , fixtureEl ) ) . toEqual ( [ div ] )
22
22
} )
23
23
24
- it ( 'should find elements globaly ' , ( ) => {
24
+ it ( 'should find elements globally ' , ( ) => {
25
25
fixtureEl . innerHTML = '<div id="test"></div>'
26
26
27
27
const div = fixtureEl . querySelector ( '#test' )
Original file line number Diff line number Diff line change 51
51
// Row columns
52
52
//
53
53
// Specify on a parent element(e.g., .row) to force immediate children into NN
54
- // numberof columns. Supports wrapping to new lines, but does not do a Masonry
54
+ // number of columns. Supports wrapping to new lines, but does not do a Masonry
55
55
// style grid.
56
56
@mixin row-cols ($count ) {
57
57
> * {
You can’t perform that action at this time.
0 commit comments