Merge pull request #3165 from CommanderRoot/rm-deprecated-substr
replace deprecated String.prototype.substr()
This commit is contained in:
		@@ -29,9 +29,9 @@ export const colorToRgb = ( color ) => {
 | 
				
			|||||||
	if( hex6 && hex6[1] ) {
 | 
						if( hex6 && hex6[1] ) {
 | 
				
			||||||
		hex6 = hex6[1];
 | 
							hex6 = hex6[1];
 | 
				
			||||||
		return {
 | 
							return {
 | 
				
			||||||
			r: parseInt( hex6.substr( 0, 2 ), 16 ),
 | 
								r: parseInt( hex6.slice( 0, 2 ), 16 ),
 | 
				
			||||||
			g: parseInt( hex6.substr( 2, 2 ), 16 ),
 | 
								g: parseInt( hex6.slice( 2, 4 ), 16 ),
 | 
				
			||||||
			b: parseInt( hex6.substr( 4, 2 ), 16 )
 | 
								b: parseInt( hex6.slice( 4, 6 ), 16 )
 | 
				
			||||||
		};
 | 
							};
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user