mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-18 19:19:10 +00:00
10 lines
279 B
JavaScript
10 lines
279 B
JavaScript
// Copyright (C) 2018 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
console.assert(true)
|
|
console.log("this should be in the output")
|
|
console.assert(false)
|
|
console.log("this should not be in the output")
|