Core: adjust data tests to ensure proper camelCasing

- Add back camelCase to the public object (deprecate not remove)
Ref #3384
This commit is contained in:
Timmy Willison
2017-12-04 16:38:37 -05:00
parent 64a289286a
commit 775caebd61
2 changed files with 99 additions and 30 deletions

View File

@@ -1,8 +1,9 @@
define( [
"./core",
"./core/nodeName",
"./core/camelCase",
"./var/isWindow"
], function( jQuery, nodeName, isWindow ) {
], function( jQuery, nodeName, camelCase, isWindow ) {
"use strict";
@@ -38,5 +39,6 @@ jQuery.isArray = Array.isArray;
jQuery.parseJSON = JSON.parse;
jQuery.nodeName = nodeName;
jQuery.isWindow = isWindow;
jQuery.camelCase = camelCase;
} );