Checks that the input has all the requested FullDate keys.
import {hasFullDateKeys} from 'date-vir';hasFullDateKeys({year: 2024}, ['year']); // `true`hasFullDateKeys({year: 2024}, ['day']); // `false` Copy
import {hasFullDateKeys} from 'date-vir';hasFullDateKeys({year: 2024}, ['year']); // `true`hasFullDateKeys({year: 2024}, ['day']); // `false`
Checks that the input has all the requested FullDate keys.