Update Fenix initial_experiments.json based on the current first-run experiments...
[gecko.git] / mobile / android / android-components / buildSrc / src / main / java / Extentions.kt
blob2b9dbb09efd4847e6a9f6bf8931636d780c4d4e4
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 import org.gradle.api.Project
6 fun Project.property(names: String, defaultValue: String): String {
7     return if (hasProperty(names)) property(names).toString() else defaultValue