We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57923c5 commit c28d04dCopy full SHA for c28d04d
1 file changed
EssentialCSharp.Web/wwwroot/js/trydotnet-module.js
@@ -93,17 +93,6 @@ function loadRunnableListings() {
93
return _runnableListingsPromise;
94
}
95
96
-/**
97
- * Checks whether a listing is present in the curated runnable set.
98
- * @param {string|number} chapter
99
- * @param {string|number} listing
100
- * @returns {Promise<boolean>}
101
- */
102
-async function isRunnableListing(chapter, listing) {
103
- const set = await loadRunnableListings();
104
- return set.has(`${parseInt(chapter, 10)}.${parseInt(listing, 10)}`);
105
-}
106
-
107
/**
108
* Strips #region / #endregion directive lines (INCLUDE, EXCLUDE, etc.)
109
* from source code while keeping the code between them intact.
0 commit comments