blob: 5e238dee11891f3909dbd126ede9c85e52ae89a2 [file] [log] [blame] [edit]
// Copyright (c) 2014, 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.
import "package:analyzer/src/util/platform_info.dart";
class OSUtilities {
static String LINE_SEPARATOR = isWindows() ? '\r\n' : '\n';
static bool isMac() => platform.operatingSystem == 'macos';
static bool isWindows() => platform.operatingSystem == 'windows';
}