@qooxdoo/framework 6.0.3 → 6.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -157,6 +157,12 @@ qx.Class.define("qx.test.type.BaseString",
|
|
|
157
157
|
|
|
158
158
|
var s = new qx.String("Juhu");
|
|
159
159
|
this.assertEquals("<b>Juhu</b>", s.bold());
|
|
160
|
+
},
|
|
161
|
+
|
|
162
|
+
testCodePointAt : function()
|
|
163
|
+
{
|
|
164
|
+
var s = new qx.type.BaseString("*");
|
|
165
|
+
this.assertEquals(42, s.codePointAt(0));
|
|
160
166
|
}
|
|
161
167
|
}
|
|
162
168
|
});
|
|
@@ -387,7 +387,8 @@ qx.Class.define("qx.type.BaseString",
|
|
|
387
387
|
'toUpperCase',
|
|
388
388
|
'toLocaleLowerCase',
|
|
389
389
|
'toLocaleUpperCase',
|
|
390
|
-
'trim'
|
|
390
|
+
'trim',
|
|
391
|
+
'codePointAt'
|
|
391
392
|
];
|
|
392
393
|
|
|
393
394
|
// feature/bug detection:
|
|
@@ -402,4 +403,4 @@ qx.Class.define("qx.type.BaseString",
|
|
|
402
403
|
}
|
|
403
404
|
}
|
|
404
405
|
|
|
405
|
-
});
|
|
406
|
+
});
|