spservices
Version:
Work with SharePoint's Web Services using jQuery
24 lines (18 loc) • 484 B
JavaScript
define([
'jquery',
'../utils/constants',
//---------------------------
// We don't need local variables for these dependencies
// because they are added to the jQuery namespace.
'../core/SPServices.core'
], function (
$,
constants
) {
"use strict";
// Return the current version of SPServices as a string
$.fn.SPServices.Version = function () {
return constants.VERSION;
}; // End $.fn.SPServices.Version
return $;
});