Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 388 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 388 Bytes

ansi_strip

Strip ANSI escape codes from a string

Install

$ dart pub add ansi_strip

Usage

import 'package:ansi_strip/ansi_strip.dart';

void main() {

  print(stripAnsi('\u001B[4mUnicorn\u001B[0m'));
  //=> 'Unicorn'

  print(stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007'));
}