Update dependencies to support Emoji v14

This commit is contained in:
Fedor Indutny 2022-04-07 11:50:42 -07:00 committed by GitHub
parent e1e1cfb892
commit 4c798bf7b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 17 deletions

View file

@ -1,7 +1,7 @@
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import emojiRegex from 'emoji-regex/es2015/RGI_Emoji';
import emojiRegex from 'emoji-regex';
import { getGraphemes } from '../util/grapheme';
import { take, size } from '../util/iterables';

View file

@ -1,7 +1,7 @@
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import emojiRegex from 'emoji-regex/es2015/RGI_Emoji';
import emojiRegex from 'emoji-regex';
import { assert } from './assert';
import { take } from './iterables';