Nothing
#' variableLibrary.R: Utility for Fabric Variable Library
#'
#' @noRd
.dummyStr <- ""
#' Get a variable value
#'
#' Dummy implementation for local development.
#'
#' @param variableReference Variable reference
#' @return A variable value (NULL)
#' @export
notebookutils.variableLibrary.get <- function(variableReference) {
NULL
}
#' Get a variable library
#'
#' Dummy implementation for local development.
#'
#' @param variableLibraryName Variable library name
#' @return A dummy variable library object (list)
#' @export
notebookutils.variableLibrary.getLibrary <- function(variableLibraryName) {
NULL
}
#' Get help string for a method.
#'
#' @param funcName function name
#' @param namespace namespace
#' @export
notebookutils.variableLibrary.getHelpString <- function(funcName = "", namespace = "") {
.dummyStr
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.