/*
 * If not stated otherwise in this file or this component's LICENSE file the
 * following copyright and licenses apply:
 *
 * Copyright 2023 Comcast Cable Communications Management, LLC.
 *
 * Licensed under the Apache License, Version 2.0 (the License);
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

export const SpecialCodepoints = {
  LINE_FEED: 0x0a,
  CARRIAGE_RETURN: 0x0d,
  SPACE: 0x20,
  TAB: 0x09,
  ZERO_WIDTH_SPACE: 0x200b,
  ZERO_WIDTH_NON_JOINER: 0x200c,
  ZERO_WIDTH_JOINER: 0x200d,
  LEFT_TO_RIGHT_MARK: 0x200e,
  RIGHT_TO_LEFT_MARK: 0x200f,
  LEFT_TO_RIGHT_EMBEDDING: 0x202a,
  RIGHT_TO_LEFT_EMBEDDING: 0x202b,
  POP_DIRECTIONAL_FORMATTING: 0x202c,
  LEFT_TO_RIGHT_OVERRIDE: 0x202d,
  RIGHT_TO_LEFT_OVERRIDE: 0x202e,
  LINE_SEPARATOR: 0x2028,
  PARAGRAPH_SEPARATOR: 0x2029,
  OBJECT_REPLACEMENT_CHARACTER: 0xfffc,
  REPLACEMENT_CHARACTER: 0xfffd,
  ZERO_WIDTH_NO_BREAK_SPACE: 0xfeff,
  LEFT_TO_RIGHT_ISOLATE: 0x2066,
  RIGHT_TO_LEFT_ISOLATE: 0x2067,
  FIRST_STRONG_ISOLATE: 0x2068,
  POP_DIRECTIONAL_ISOLATE: 0x2069,
  INHIBIT_SYMMETRIC_SWAPPING: 0x206a,
  ACTIVATE_SYMMETRIC_SWAPPING: 0x206b,
  INHIBIT_ARABIC_FORM_SHAPING: 0x206c,
  ACTIVATE_ARABIC_FORM_SHAPING: 0x206d,
  NATIONAL_DIGIT_SHAPES: 0x206e,
  NOMINAL_DIGIT_SHAPES: 0x206f,
  LEFT_TO_RIGHT_BOUNDARY: 0x200e,
  RIGHT_TO_LEFT_BOUNDARY: 0x200f,
};
