UNPKG

@lexical/list

Version:

This package provides the list feature for Lexical.

11 lines (10 loc) 365 B
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ 'use strict' const LexicalList = process.env.NODE_ENV !== 'production' ? require('./LexicalList.dev.js') : require('./LexicalList.prod.js'); module.exports = LexicalList;