diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2020-05-18 22:25:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 22:25:49 +0200 |
commit | ef4d6ca6c3a1b276fedc27b1f3a18823276f01a3 (patch) | |
tree | 6c82db4feb714fce8672a9b2354bfa1624de73fc /src/css/isAutoPx.js | |
parent | d96111e18b42ae1bc7def72a8a0d156ea39e4d0e (diff) | |
download | jquery-ef4d6ca6c3a1b276fedc27b1f3a18823276f01a3.tar.gz jquery-ef4d6ca6c3a1b276fedc27b1f3a18823276f01a3.zip |
Build: Update eslint-config-jquery, fix linting violations
Closes gh-4696
Ref jquery/eslint-config-jquery#15
Ref jquery/eslint-config-jquery#16
Diffstat (limited to 'src/css/isAutoPx.js')
-rw-r--r-- | src/css/isAutoPx.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/css/isAutoPx.js b/src/css/isAutoPx.js index a55d5bbcc..ca9b35aca 100644 --- a/src/css/isAutoPx.js +++ b/src/css/isAutoPx.js @@ -30,6 +30,6 @@ function isAutoPx( prop ) { // 2. The prop is not empty. return ralphaStart.test( prop ) && rautoPx.test( prop[ 0 ].toUpperCase() + prop.slice( 1 ) ); -}; +} export default isAutoPx; |