arrayWithHoles internal function name consistency (#7709) [skip ci]

This commit is contained in:
Guy Bedford
2018-04-10 15:33:54 +02:00
committed by Henry Zhu
parent 3177f05904
commit 5b1332457c

View File

@@ -754,7 +754,7 @@ helpers.arrayWithoutHoles = () => template.program.ast`
`;
helpers.arrayWithHoles = () => template.program.ast`
export default function _arrayWithoutHoles(arr) {
export default function _arrayWithHoles(arr) {
if (Array.isArray(arr)) return arr;
}
`;