blob: 880e00ae53d675f921de37fb74e9da235abdbfc5 [file] [edit]
// Copyright (c) 2026, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
extension StringUtils on String {
String get withTrailingSlash => endsWith('/') ? this : '$this/';
}