td> 77628cf8bf first comm 2 年 前 SN.js 77628cf8bf first comm 2 年 前 SO.js 77628cf8bf first comm 2 年 前 SR.js 77628cf8bf first comm 2 年 前 ST.js 77628cf8bf first comm 2 年 前 SV.js 77628cf8bf first comm 2 年 前 SY.js 77628cf8bf first comm 2 年 前 SZ.js 77628cf8bf first comm 2 年 前 TC.js 77628cf8bf first comm 2 年 前 TD.js 77628cf8bf first comm 2 年 前 TG.js 77628cf8bf first comm 2 年 前 TH.js 77628cf8bf first comm 2 年 前 TJ.js 77628cf8bf first comm 2 年 前 TK.js 77628cf8bf first comm 2 年 前 TL.js 77628cf8bf first comm 2 年 前 TM.js 77628cf8bf first comm 2 年 前 TN.js 77628cf8bf first comm 2 年 前 TO.js 77628cf8bf first comm 2 年 前 TR.js 77628cf8bf first comm 2 年 前 TT.js 77628cf8bf first comm 2 年 前 TV.js 77628cf8bf first comm 2 年 前 TW.js 77628cf8bf first comm 2 年 前 TZ.js 77628cf8bf first comm 2 年 前 UA.js 77628cf8bf first comm 2 年 前 UG.js 77628cf8bf first comm 2 年 前 US.js 77628cf8bf first comm 2 年 前 UY.js 77628cf8bf first comm 2 年 前 UZ.js 77628cf8bf first comm 2 年 前 VA.js 77628cf8bf first comm 2 年 前 VC.js 77628cf8bf first comm 2 年 前 VE.js 77628cf8bf first comm 2 年 前 VG.js 77628cf8bf first comm 2 年 前 VI.js 77628cf8bf first comm 2 年 前 VN.js 77628cf8bf first comm 2 年 前 VU.js 77628cf8bf first comm 2 年 前 WF.js 77628cf8bf first comm 2 年 前 WS.js 77628cf8bf first comm 2 年 前 YE.js 77628cf8bf first comm 2 年 前 YT.js 77628cf8bf first comm 2 年 前 ZA.js 77628cf8bf first comm 2 年 前 ZM.js 77628cf8bf first comm 2 年 前 ZW.js 77628cf8bf first comm 2 年 前 alt-af.js 77628cf8bf first comm 2 年 前 alt-an.js 77628cf8bf first comm 2 年 前 alt-as.js 77628cf8bf first comm 2 年 前 alt-eu.js 77628cf8bf first comm 2 年 前 alt-na.js 77628cf8bf first comm 2 年 前 alt-oc.js 77628cf8bf first comm 2 年 前 alt-sa.js 77628cf8bf first comm 2 年 前 alt-ww.js 77628cf8bf first comm 2 年 前 tmt/tiger_frontend - Gogs: Simplico Git Service

暫無描述

index-es5.js 674B

12345678910111213141516171819202122232425
  1. "use strict";
  2. var pattern = /-(\w|$)/g;
  3. var callback = function callback(dashChar, char) {
  4. return char.toUpperCase();
  5. };
  6. var camelCaseCSS = function camelCaseCSS(property) {
  7. property = property.toLowerCase();
  8. // NOTE :: IE8's "styleFloat" is intentionally not supported
  9. if (property === "float") {
  10. return "cssFloat";
  11. }
  12. // Microsoft vendor-prefixes are uniquely cased
  13. else if (property.charCodeAt(0) === 45&& property.charCodeAt(1) === 109&& property.charCodeAt(2) === 115&& property.charCodeAt(3) === 45) {
  14. return property.substr(1).replace(pattern, callback);
  15. } else {
  16. return property.replace(pattern, callback);
  17. }
  18. };
  19. module.exports = camelCaseCSS;