From 0940cb9bd2b8967c8eac15f3097933f5aee7e551 Mon Sep 17 00:00:00 2001 From: Scott González Date: Mon, 8 May 2017 10:47:27 -0400 Subject: All: Remove uses of `jQuery.camelCase()` Ref #15160 Ref gh-1813 --- tests/lib/qunit-assert-domequal.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'tests/lib') diff --git a/tests/lib/qunit-assert-domequal.js b/tests/lib/qunit-assert-domequal.js index b22bd90b9..35695c4f1 100644 --- a/tests/lib/qunit-assert-domequal.js +++ b/tests/lib/qunit-assert-domequal.js @@ -59,6 +59,12 @@ domEqual.attributes = [ "title" ]; +function camelCase( string ) { + return string.replace( /-([\da-z])/gi, function( all, letter ) { + return letter.toUpperCase(); + } ); +} + function getElementStyles( elem ) { var styles = {}; var style = elem.ownerDocument.defaultView ? @@ -71,7 +77,7 @@ function getElementStyles( elem ) { while ( len-- ) { key = style[ len ]; if ( typeof style[ key ] === "string" ) { - styles[ $.camelCase( key ) ] = style[ key ]; + styles[ camelCase( key ) ] = style[ key ]; } } -- cgit v1.2.3