export function metaName(key) {
    assert(`metaName takes a string as an argument, you passed ${typeof key} ${key}`, typeof key === 'string' && key.trim().length);

    return `__${underscore(key)}__meta`;
}