|
1234567891011121314151617181920212223242526272829 |
- /**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- * @format
- * @flow
- * @emails oncall+draft_js
- */
- 'use strict';
-
- import type ContentState from "./ContentState";
- import type { DraftEntityMutability } from "./DraftEntityMutability";
- import type { DraftEntityType } from "./DraftEntityType";
-
- const DraftEntityInstance = require("./DraftEntityInstance");
-
- const addEntityToContentState = require("./addEntityToContentState");
-
- function createEntityInContentState(contentState: ContentState, type: DraftEntityType, mutability: DraftEntityMutability, data?: Object): ContentState {
- return addEntityToContentState(contentState, new DraftEntityInstance({
- type,
- mutability,
- data: data || {}
- }));
- }
-
- module.exports = createEntityInContentState;
|