| import hasInterpolation from './hasInterpolation.mjs'; | |
| /** | |
| * Check whether a keyframes name is standard | |
| * | |
| * @param {string} keyframesName | |
| * @returns {boolean} | |
| */ | |
| export default function isStandardSyntaxKeyframesName(keyframesName) { | |
| if (hasInterpolation(keyframesName)) { | |
| return false; | |
| } | |
| return true; | |
| } |