Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
33 lines
952 B
JavaScript
33 lines
952 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = getTabIndex;
|
|
var _jsxAstUtils = require("jsx-ast-utils");
|
|
/**
|
|
* Returns the tabIndex value.
|
|
*/
|
|
function getTabIndex(tabIndex) {
|
|
var literalValue = (0, _jsxAstUtils.getLiteralPropValue)(tabIndex);
|
|
|
|
// String and number values.
|
|
if (['string', 'number'].indexOf(typeof literalValue) > -1) {
|
|
// Empty string will convert to zero, so check for it explicity.
|
|
if (typeof literalValue === 'string' && literalValue.length === 0) {
|
|
return undefined;
|
|
}
|
|
var value = Number(literalValue);
|
|
if (Number.isNaN(value)) {
|
|
return undefined;
|
|
}
|
|
return Number.isInteger(value) ? value : undefined;
|
|
}
|
|
|
|
// Booleans are not valid values, return undefined.
|
|
if (literalValue === true || literalValue === false) {
|
|
return undefined;
|
|
}
|
|
return (0, _jsxAstUtils.getPropValue)(tabIndex);
|
|
}
|
|
module.exports = exports.default; |